-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (42 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script defer src="app.js"></script>
<title>Document</title>
</head>
<body>
<header>
<img src="images/beyonce-bee.png" alt="">
<h1>Spelling Bey</h1>
</header>
<main class="container">
<section>
<div>
<h3>Your word is...</h3>
<button id="speaker"><img src="images/speaker.svg" alt="speaker icon"></button>
</div>
<!-- <div>
<h3>Your word is...</h3>
<button id="speaker"><img src="images/speaker.svg" alt="speaker icon"></button>
</div> -->
<!-- <button>Want the part of speech?</button>
<button>Use it in a sentence?</button> -->
</section>
<section>
<div>
<input id="answer" type="text" autofocus>
<button id="mic"><img src="images/mic.png" alt=""></button>
</div>
<button id="submit">Submit</button>
</section>
<section id="answer-section">
<p id="spelled-word"></p>
<p id="correct-word"></p>
</section>
</main>
</body>
</html>