-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (75 loc) · 2.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<!--Example HTML for wordle-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A Custom wordle template">
<meta name="keywords" content="custom, wordle">
<meta name="author" content="Author">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Template Wordle</title>
<link rel="stylesheet" type="text/css" href="main.css">
<script defer type="text/javascript" src="script.js"></script>
</head>
<body>
<div class="heading">
<h1>Template Wordle</h1>
</div>
<div class="wordle-container" style="padding:15px">
<div class="wordle-wrapper">
<div class="wordle-row">
<div id="1_1"></div>
<div id="1_2"></div>
<div id="1_3"></div>
<div id="1_4"></div>
<div id="1_5"></div>
</div>
<div class="wordle-row">
<div id="2_1"></div>
<div id="2_2"></div>
<div id="2_3"></div>
<div id="2_4"></div>
<div id="2_5"></div>
</div>
<div class="wordle-row">
<div id="3_1"></div>
<div id="3_2"></div>
<div id="3_3"></div>
<div id="3_4"></div>
<div id="3_5"></div>
</div>
<div class="wordle-row">
<div id="4_1"></div>
<div id="4_2"></div>
<div id="4_3"></div>
<div id="4_4"></div>
<div id="4_5"></div>
</div>
<div class="wordle-row">
<div id="5_1"></div>
<div id="5_2"></div>
<div id="5_3"></div>
<div id="5_4"></div>
<div id="5_5"></div>
</div>
<div class="wordle-row">
<div id="6_1"></div>
<div id="6_2"></div>
<div id="6_3"></div>
<div id="6_4"></div>
<div id="6_5"></div>
</div>
</div>
</div>
<div class="nav-btn-container">
<input type="button" class="button" value="Generate New Word" onclick="generateNewWord();"></input>
<a href="word-list.html">
<input type="button" class="button" value="Word List"></input>
</a>
<a href="how-to-play.html">
<input type="button" class="button" value="How To Play"></input>
</a>
</div>
</body>
</html>