-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
31 lines (23 loc) · 807 Bytes
/
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
<!doctype html>
<html>
<head>
<title>Letter Names</title>
<link type="text/css" rel="stylesheet" href="style.css">
</head>
<body>
<div class="inputcontainer">
<h1>Learn Letter Names</h1>
<h2>Type a letter to hear its name or type your name in the box below!</h2>
<input placeholder="type letters only...">
</div>
<div class="wrapper">
<div class="keys" id="keyIDPressed"></div>
<div class="keys" id="keyID"></div>
</div>
<footer>
<div><strong>To Adonis:</strong> From Momma</div>
<div><strong>Code:</strong> © Shaundai Person | <strong>Images:</strong> © <a href="https://alphabetimals.com">Alphabetimals</a></div>
</footer>
</body>
<script src="script.js"></script>
</html>