-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (91 loc) · 3.28 KB
/
index.html
File metadata and controls
96 lines (91 loc) · 3.28 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!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="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="icon" href="https://cdn-icons-png.flaticon.com/512/1973/1973739.png" type="image/icon type"/>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/1d6a9c959f.js" crossorigin="anonymous"></script>
<script defer src="script.js"></script>
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "8fxuuzoo94");
</script>
<title>Dictionary</title>
</head>
<body>
<!--NavBar Start-->
<nav class="navbar navbar-light bg-light">
<a class="navbar-brand" href="index.html">
<img src="https://cdn-icons-png.flaticon.com/512/1973/1973739.png" width="30" height="30" class="d-inline-block align-top" alt="">
Dictionary
</a>
</nav>
<!--NavBar End-->
<!--Input Box-->
<form class="input-group mb-3" id="idc" >
<input name="searchBox" id="searchBox" type="search" class="form-control" placeholder="Search for a Word" aria-label="Search for a Word" aria-describedby="basic-addon2" autocomplete="off"/>
<span class="hide" id="output"></span>
<button class="input-group-text input-group-append" id="basic-addon2" type="button" spellcheck="false" onclick="SToT()"><i class="fas fa-microphone"></i></button>
</form>
<!--Input Box End-->
<!--Output Box Start-->
<div id="searchResult">
<div>
<h1>Word</h1>
<p id="word" class="text-justify"></p>
<p id="verb" class="text-justify"></p>
</div>
<div>
<h1>Definition</h1>
<p id="definition" class="text-justify"></p>
</div>
<div>
<h1>Synonyms</h1>
<p id="synonyms" class="text-justify"></p>
</div>
<div>
<h1>Example</h1>
<p id="example" class="text-justify"></p>
</div>
<div>
<h1>How To Spell?</h1>
<audio id="spell" class="text-justify"></audio>
</div>
<button type="button" class="btn btn-light" onclick="MoreData()">SeeMore<i class="fas fa-arrow-down"></i></button>
</div>
<!--Output Box End-->
<hr>
<!--ShowMore Output Start-->
<div id="SeeMore">
<div>
<p id="rb" class="text-justify"></p>
</div>
<div>
<h1>Definition</h1>
<p id="finition" class="text-justify"></p>
</div>
<hr>
<div>
<p id="erb" class="text-justify"></p>
</div>
<div>
<h1>Definition</h1>
<p id="efinition" class="text-justify"></p>
</div>
<div>
<h1>Synonyms</h1>
<p id="ynonyms" class="text-justify"></p>
</div>
<div>
<h1>Example</h1>
<p id="xample" class="text-justify"></p>
</div>
</div>
<!--ShowMore Output End-->
</body>
</html>