-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (100 loc) · 3.27 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Daily Challenges</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
/>
<meta
name="description"
content="A website focusing on daily challenges, starting with Wordle and going through to Heardle and Worldle."
/>
<link rel="stylesheet" href="normalize.css" />
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="animations.css" />
</head>
<body>
<header role="banner" class="hidden scale-up-top" id="header">
<h1>Daily Challenges</h1>
<h2 id="date"></h2>
</header>
<div role="main" id="popup" class="scale-up-bottom">
<h1>How To Play Daily Challenges</h1>
<p>
This is a website for collecting all the Wordle-adjacent daily
challenges. After you visit each challenge, its button will
turn green, and stay green to indicate your progress today.
Resets everyday.
</p>
<p>
<em>N.B.</em> This site is set in P22 Underground, a replica of
the Transport for London Johnston font.
</p>
<button class="noColorChange" id="closePopup">Play</button>
<a
href="https://github.com/jones58/daily-challenges"
target="_blank"
>
<button class="noColorChange" id="code">View the code</button>
</a>
</div>
<div
class="buttons hidden scale-up-bottom"
role="main"
id="mainContent"
>
<a
href="https://www.nytimes.com/games/wordle/index.html"
target="_blank"
>
<button id="wordle">Wordle</button>
</a>
<a
href="https://spellbee.org/"
target="_blank"
>
<button id="spellingbee">Spelling Bee</button>
</a>
<a
href="https://wordslicer.com/"
target="_blank"
>
<button id="worldslicer">Word Slicer</button>
</a>
<a href="https://60s.heardledecades.com/" target="_blank">
<button id="heardle60s">Heardle 60s</button>
</a>
<a href="https://70s.heardledecades.com/" target="_blank">
<button id="heardle70s">Heardle 70s</button>
</a>
<a href="https://80s.heardledecades.com/" target="_blank">
<button id="heardle80s">Heardle 80s</button>
</a>
<a href="https://90s.heardledecades.com/" target="_blank">
<button id="heardle90s">Heardle 90s</button>
</a>
<a href="https://00s.heardledecades.com/" target="_blank">
<button id="heardle00s">Heardle 00s</button>
</a>
<a href="https://10s.heardledecades.com/" target="_blank">
<button id="heardle10s">Heardle 10s</button>
</a>
<a href="https://worldle.teuteuf.fr/" target="_blank">
<button id="worldle">Worldle</button>
</a>
<a href="https://framed.wtf" target="_blank">
<button id="framed">Framed</button>
</a>
<a href="https://wafflegame.net/daily" target="_blank">
<button id="waffle">Waffle</button>
</a>
<a href="https://hexcodle.com/" target="_blank">
<button id="Hexcodle">Hexcodle</button>
</a>
<button id="reset" class="noColorChange">RESET ALL</button>
</div>
<script src="scripts/main.js"></script>
</body>
</html>