forked from KelseyRA/movie-battle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (58 loc) · 2.76 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Movie-Battle</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap" rel="stylesheet">
<!-- Link jquery library -->
<script src="https://code.jquery.com/jquery-3.6.3.min.js"
integrity="sha256-pvPw+upLPUjgMXY0G+8O0xUf+/Im1MZjXxxgOcBQBXU=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./assets/style.css">
</head>
<body style="background: linear-gradient(to right, blueviolet, rgb(196, 146, 242));">
<section class="hero is-medium is-primary is-bold">
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="title is-1">
Movie Battle
</h1>
<h2 class="subtitle">
Battle your partner for a chance to select the movie of your choice!
</h2>
</div>
</div>
</section>
<div class="container mt-6">
<div class="columns is-centered">
<div class="column is-half">
<div class="card">
<div class="card-content">
<p class="title m-6">How To Play</p>
<ol class="subtitle m-6">
<li>Grab a partner.</li>
<li>You will have 15 seconds to answer each questions.</li>
<li>Assign player 1 to yourself and player 2 to your partner.</li>
<li>To add a point click the player's button who answered the question correctly.</li>
<li>If time runs out no one gets a point.</li>
<li>Click the next question button to get another question</li>
<li>Whoever has the most points after 10 questions gets to choose which movie to watch!</li>
<li>Click the start button to begin.</li>
</ol>
</div>
<footer class="card-footer">
<a href="./trivia.html" class="card-footer-item">
<button class="button is-primary">Start</button>
</a>
</footer>
</div>
</div>
</div>
</div>
<script src="./assets/script.js"></script>
</body>
</html>