-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
56 lines (47 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href='https://fonts.googleapis.com/css?family=Schoolbell' rel='stylesheet'>
<title>Alphabet App</title>
</head>
<body>
<div id="title-div">
<h1>Let's Learn The Alphabet!</h1>
</div>
<div id="list-of-letters">
<ul></ul>
</div>
<div id="Instruction-1">
<p>⬆️Click on the letter when you are done!⬆️</p>
</div>
<div id="display-letter">
<h2 class="display-letter"></h2>
</div>
<div id="image-div" class="photo-container">
<img class="centered-photo" src="images/placeholder.jpg" alt="Centered Photo" title="">
<button class="button-on-image">Click here to make me come to life!</button>
</div>
<div id="word-div" class="text-container">
<h3 class="centered-text"></h3>
</div>
<div id="related-word-div">
<ul id="related-word-list" class="related-word-list">
<li id="li-one" class="related-words"></li>
<li id="li-two" class="related-words"></li>
</ul>
</div>
<div id="input-form">
<form id="form">
<input type="text" class="input" placeholder="Write your own word!">
<input type="submit" class="submit-button">
</form>
</div>
<div id='image'>
<image src="images/abc.png" class="footer-image"></image>
</div>
<script src="./index.js"></script>
</body>
</html>