about summary refs log tree commit diff
path: root/index.html
blob: 5f62f48a5caf1671f2d5287da68bb767521a939c (plain)
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
<html>

<head>
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<meta charset="utf-8" />
	<title>Wednesdayle</title>
	<link rel="stylesheet" href="style.css" />
	<script src="script.js"></script>
</head>

<body>
	<main>
		<section id="dropdown">
			<button id="close-dropdown">X</button>
			<h1>Wednesdayle</h1>
			<p>
				It's one word, nine letters long!
			</p>
			<p>
				You have one guess. Goodluck!
			</p>
		</section>
		<h1>Wednesdayle</h1>
		<section id="game-area">
			<div id="box0"></div>
			<div id="box1"></div>
			<div id="box2"></div>
			<div id="box3"></div>
			<div id="box4"></div>
			<div id="box5"></div>
			<div id="box6"></div>
			<div id="box7"></div>
			<div id="box8"></div>
			<section id="msgbox">
				<div id="notword">That's not the word..</div>
				<div id="theword">That's the word!</div>
			</section>
		</section>
		<section id="keyboard">
			<div id="row0">
				<button id="key0">W</button>
				<button id="key1">E</button>
				<button id="key2">Y</button>
			</div>
			<div id="row1">
				<button id="key3">A</button>
				<button id="key4">S</button>
				<button id="key5">D</button>
				<button id="key6">N</button>
			</div>
			<div id="row2">
				<button id="delete">Delete</button>
				<button id="enter">Enter</button>
			</div>
		</section>
	</main>
</body>

</html>