-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (83 loc) · 3.19 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Freeman</title>
<link
href="https://code.ionicframework.com/1.3.0/css/ionic.css"
rel="stylesheet"
type="text/css"
/>
<link href="./styles/style.css" rel="stylesheet" type="text/css" />
<link rel="icon" href="./img/freeman.png" type="image/png" sizes="20x20" />
</head>
<body>
<div class="wrapper clearfix center">
<div class="hint-container center">
<p class="hint"></p>
</div>
<div class="word-container center">
<p class="jumbled-word"></p>
</div>
<div class="player-1-section">
<h3 class="winner-head center winner-1">Winner</h3>
<svg height="125" width="100" class="figure-container center figure-1">
<!-- Rod -->
<line x1="70" y1="10" x2="70" y2="25" class="rod-part-1" />
<line x1="30" y1="10" x2="70" y2="10" class="rod-part-1" />
<line x1="30" y1="10" x2="30" y2="115" class="rod-part-1" />
<line x1="10" y1="115" x2="50" y2="115" class="rod-part-1" />
<!-- Head -->
<circle cx="70" cy="35" r="10" />
<!-- Body -->
<line x1="70" y1="45" x2="70" y2="75" />
<!-- Arms -->
<line x1="70" y1="60" x2="60" y2="50" />
<line x1="70" y1="60" x2="80" y2="50" />
<!-- Legs -->
<line x1="70" y1="75" x2="60" y2="90" />
<line x1="70" y1="75" x2="80" y2="90" />
</svg>
<div class="word word-1"></div>
<div class="wrong-container-1"></div>
</div>
<div class="player-2-section">
<h3 class="winner-head center winner-2">Winner</h3>
<svg height="125" width="100" class="figure-container center figure-2">
<!-- Rod -->
<line x1="70" y1="10" x2="70" y2="25" class="rod-part-2" />
<line x1="30" y1="10" x2="70" y2="10" class="rod-part-2" />
<line x1="30" y1="10" x2="30" y2="115" class="rod-part-2" />
<line x1="10" y1="115" x2="50" y2="115" class="rod-part-2" />
<!-- Head -->
<circle cx="70" cy="35" r="10" />
<!-- Body -->
<line x1="70" y1="45" x2="70" y2="75" />
<!-- Arms -->
<line x1="70" y1="60" x2="60" y2="50" />
<line x1="70" y1="60" x2="80" y2="50" />
<!-- Legs -->
<line x1="70" y1="75" x2="60" y2="90" />
<line x1="70" y1="75" x2="80" y2="90" />
</svg>
<div class="word word-2"></div>
<div class="wrong-container-2"></div>
</div>
<div class="score clearfix center">
<div class="score-1-container">
<span class="score-1 center">0</span>
</div>
<div class="score-2-container">
<span class="score-2 center">0</span>
</div>
</div>
<button class="btn-round"><i class="ion-ios-loop"></i>Next round</button>
<button class="btn-new">
<i class="ion-ios-plus-outline"></i>New game
</button>
</div>
</body>
<script type="module" src="./script/script.js"></script>
<script type="module" src="./script/wordsObj.js"></script>
</html>