forked from Rakshita-0023/Dictionary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (44 loc) · 1.29 KB
/
index.html
File metadata and controls
48 lines (44 loc) · 1.29 KB
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
<!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>WordDictionary</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
</head>
<body>
<audio id="sound"></audio>
<div class="title">
<h1>WordDictionary</h1>
</div>
<div class="container">
<h1>Dictionary</h1>
<div class="search-box">
<input type="text" placeholder="Search word ..." id="inp-word" />
<button id="search-btn">Search</button>
</div>
<div class="result" id="result"></div>
</div>
<script src="script.js"></script>
</body>
<footer>
<div class="socials">
<a href="https://www.youtube.com/@CodesMDR/"
><i class="fa-brands fa-youtube"></i
></a>
<a href="https://twitter.com/CodesMDR"
><i class="fa-brands fa-twitter"></i
></a>
<a href="https://github.com/CodesMDR"
><i class="fa-brands fa-github"></i
></a>
</div>
<p>© 2023 CodesMDR</p>
</footer>
</html>
<div class="word"></div>