-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·40 lines (35 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dictionary app by abhishekmorla</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1 class="h1">Search for a Word</h1>
<div class="bar">
<input
onkeypress="handle(event)"
type="text"
placeholder="Type and press enter" class="search-field">
</div>
<div class="result">
<h1 class="word"></h1>
<p class="phonetics"></p>
<audio class="audio" controls></audio>
<p class="meaningheading">Meaning</p>
<p class="word-definition"></p>
<p class="meaningheading">Synonyms</p>
<div class="synonyms">
</div>
</div>
<p class="footer">
<strong></></strong> by <a target="_blank" href="https://www.linkedin.com/in/abhishekmorla/" style="text-decoration:none;">abhishekmorla</a>.
</p>
</div>
<script src="main.js"></script>
</body>
</html>