-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<link rel="stylesheet" href="css/style.css" />
<link rel="icon" href="img/icon.png">
<title>Words Game</title>
</head>
<body>
<script src="js/pre-run.js"></script>
<div class="title-sec">
<span>W</span>
<span>O</span>
<span>R</span>
<span>D</span>
<span>S</span>
<span>G</span>
<span>A</span>
<span>M</span>
<span>E</span>
</div>
<div class="counter">
<span id="lives" title="Lives"></span>
<span id="points" title="Points"></span>
<span id="out" title="Leave and save"
><i class="bx bx-arrow-back"></i
></span>
<span id="rank" title="Rankings"><i class="bx bx-menu"></i></span>
<span id="help" title="How to play?"
><i class="bx bx-question-mark"></i
></span>
</div>
<div class="container">
<div class="input-sec">
<input type="text" id="input" placeholder="Your turn"/>
</div>
<div class="answer-sec" id="answer"></div>
</div>
<div class="footer">
<h4>
<a href="https://github.com/whynotkimhari" target="_blank"
>whynotkimhari <i class="bx bxl-github"></i
></a>
</h4>
</div>
<script type="module" src="js/script.js"></script>
</body>
</html>