-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (36 loc) · 1.14 KB
/
index.html
File metadata and controls
44 lines (36 loc) · 1.14 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
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Word Game (you'll probably fail)</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="container">
<h1>WORDLE</h1>
<div id="subtitle">but you're probably not smart enough</div>
<div id="stats">
<div class="stat">Wins: <span id="wins">0</span></div>
<div class="stat">Games: <span id="games">0</span></div>
<div class="stat">Win Rate: <span id="winrate">0%</span></div>
</div>
<div id="hint-box">
<div id="hint-label">Hint (if you need it):</div>
<div id="hint-text"></div>
</div>
<div id="board"></div>
<div id="input-section">
<input type="text" id="guess-input" maxlength="5" autocomplete="off" placeholder="type here">
</div>
<div id="message"></div>
<div id="actions">
<button id="new-game">New Game</button>
<button id="share-btn">Share</button>
<button id="give-up">Give Up</button>
</div>
<div id="keyboard"></div>
</div>
<script src="index.js"></script>
</body>
</html>