-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.39 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
<!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>Rock Paper Scissors</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css"
/>
</head>
<body>
<div class="section has-text-centered">
<div class="container">
<div class="columns">
<div class="column is-half is-offset-one-quarter">
<h1 class="title is-size-1">Rock Paper Scissors</h1>
<h2 class="subtitle">Choose your hand to start playing</h2>
<p class="subtitle is-5">Earn 3 points to win</p>
<div id="buttons-container" class="section">
<button id="rock" class="button is-large is-link">Rock</button>
<button id="paper" class="button is-large is-link">Paper</button>
<button id="scissors" class="button is-large is-link">
Scissors
</button>
</div>
<div class="messages section is-size-5">
<p id="hand"></p>
<p id="round"></p>
<p id="score"></p>
</div>
</div>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>