forked from nigeldias27/wordle-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 1.2 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
<html>
<body style="background-color: #7dc734;">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.js"></script>
<script src="wordle.js"></script>
<script src="Falling_words.js"></script>
<script src="check.js"></script>
<div style="width:100vw;">
<div style="display: flex;justify-content: center;">
<h1 style="font-family: monospace;font-size: 64px;">Wordle Clone</h1>
</div>
<div id="wordle_canvas" style="display: flex;justify-content: center;"></div>
<div style="display: flex;justify-content: center;">
<h2 style="font-family: monospace;font-size: 32px;">Rules</h2></div>
<div style="display: flex;justify-content: center;">
<ul>
<li style="margin-bottom: 8px;font-size: 32px;">You get 4 attempts to guess the right word</li>
<li style="margin-bottom: 8px;font-size: 32px;">Each guess must be a valid 5 letter word. Press Enter to submit</li>
<li style="margin-bottom: 8px;font-size: 32px;">To start playing, just begin typing your first guess</li>
</ul>
</div>
</div>
</body>
</html>