-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (32 loc) · 1.24 KB
/
index.html
File metadata and controls
42 lines (32 loc) · 1.24 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="nav">
<ul>
<li>HAMMER STRENGTH GAME 😎</li>
</ul>
</div>
<div class="box">
<div class="hammer"><img src="hammer.png"></div>
<svg class="svg" width="1000px" height="1000px" viewbox=" 0 0 592 592">
<circle cx="300" cy="120" r="5" stroke="white" stroke-width="2" fill="#A86532" />
<line id="line" x1="300" y1="120" x2="500" y2="120" stroke="#63B5A4" stroke-width="5"> </line>
<circle cx="295" cy="114" r="37" stroke="black" stroke-width="0" fill="#63B5A4" />
<text id="score" x="287" y="125" font-family="Arial" font-size="50px" fill="black"> 0</text>
</svg>
<div class="btn">
<li><div class="turn">Player 1 turn</div></li>
<li><button class="stop">STOP</button></li>
<li><button class="re">RESET</button></li>
</div>
<div class="won"><img src="excited.gif"></div>
</div>
<script src="script.js"></script>
</body>
</html>