-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmenu.html
More file actions
77 lines (71 loc) · 2.9 KB
/
menu.html
File metadata and controls
77 lines (71 loc) · 2.9 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CS3G16HP6X"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CS3G16HP6X');
</script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4934267210788799"
crossorigin="anonymous"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wordle Menu</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div id="container">
<div id="game">
<header>
<div id="left-buttons">
</div>
<h1 id="title">Wordle Menu</h1>
<div id="right-buttons">
</div>
</header>
<div id="menu">
<a href="./game/" class="to-game">Standard Wordle</a>
<a href="./play-with-hints/" class="to-game">Wordle With AI Generated Hints</a>
<a href="./index.html" class="to-game">Wordle Solver</a>
<a href="./hard.html" class="to-game">Wordle Solver For Hard Mode</a>
<script type="text/javascript" src="https://cdnjs.buymeacoffee.com/1.0.0/button.prod.min.js" data-name="bmc-button" data-slug="lachydauth" data-color="#404040" data-emoji="" data-font="Cookie" data-text="Buy me a coffee" data-outline-color="#ffffff" data-font-color="#ffffff" data-coffee-color="#FFDD00" ></script>
<div class="ad-container">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4934267210788799"
crossorigin="anonymous"></script>
<!-- option replacement -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-4934267210788799"
data-ad-slot="4689481366"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div class="ad-container">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4934267210788799"
crossorigin="anonymous"></script>
<!-- option replacement -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-4934267210788799"
data-ad-slot="4689481366"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</div>
</div>
</div>
</body>
</html>