-
Notifications
You must be signed in to change notification settings - Fork 27
/
index.html
40 lines (39 loc) · 1.37 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>
<head>
<title>Wordle</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/fancy.css" />
<link rel="shortcut icon" type="image/jpg" href="assets/favicon.svg"/>
<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=Open+Sans:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div id="center-content">
<!-- <button>?</button> -->
<h1>WORDLE</h1>
</div>
</header>
<main>
<div id="grid">
<!-- controlled by JS -->
</div>
<div id="root">
</div>
<div class="userguess" id="ghost-input">
<div class="letter"></div>
<div class="letter"></div>
<div class="letter"></div>
<div class="letter"></div>
<div class="letter"></div>
</div>
<input id="guess" value="" maxlength="5" />
</main>
</body>
<script src="js/lib/words.js"></script>
<script src="js/lib/domWork.js"></script>
<script src="js/index.js"></script>
</script>
</html>