-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>El's Bees</title>
</head>
<body>
<h1>Hello there, welcome to El's Spelling Bee 🐝</h1>
<h2>Score: <span id="score"> </span></h2>
<input type="text" id="answer" readonly/>
<h2 id="alreadyAnswered"></h2>
<div id="honeycomb">
<button id="firstLet">C</button>
<button id="secondLet">D</button>
<button id="thirdLet">E</button>
<button id="fifthLet">G</button>
<button id="forthLet">F</button>
<button id="sixLet">H</button>
<button id="delete">Delete</button>
<button id="sevenLet">I</button>
<button id="submitButton">Submit</button>
</div>
<h2> Rules</h2>
<p> Points: less than 5 letters is 1 point : 5 or more is 2 points</p>
<p> Use the letters provided below to make anagrams for your word</p>
<script src="./source.js"></script>
</body>
</html>