-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 937 Bytes
/
Copy pathindex.html
File metadata and controls
22 lines (22 loc) · 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Dictionary app to search for words and their meanings." />
<title>Dictionary | Hyper</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" />
<link rel="stylesheet" href="Style.css" />
</head>
<body>
<audio id="sound" aria-hidden="true"></audio>
<div class="wrapper">
<div class="search-box">
<input type="text" placeholder="Type the word here...Eg: Class" id="input-word" aria-label="Type the word here" />
<button id="search-btn" aria-label="Search">Search</button>
</div>
<div class="result" id="result"></div>
</div>
<script src="DictionaryScript.js" defer></script>
</body>
</html>