-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (53 loc) · 2.07 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!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</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.13.0/css/all.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"rel="stylesheet" defer>
<meta
name="description"
content="A Dictionary App made with html css and javascript/js. Fetching the data from free dictionary api.">
<script src="script.js" defer></script>
</head>
<body>
<div class="center">
<div id="title">
<h2>English Dictionary</h2>
</div>
<div id="search_container">
<div class="search-box">
<input id="search" type="search" placeholder="Search a word" required spellcheck="false">
<i class="fas fa-search"></i>
<!-- <i class="fas fa-times"></i> -->
<span class="material-icons">close</span>
</div>
<p class="info-text">Type any existing word and press enter to get meaning, example, synonyms, etc.</p>
</div>
<div class="content">
<div id="phenotic" class=" bor-bot">
<div class="search-content">
<h3>Happy</h3>
<p class="small-content">adjective /ˈhapi/</p>
</div>
<i class="fas fa-volume-up"></i>
</div>
<div id="meaning" class=" bor-bot">
<h3>Meaning</h3>
<p class="small-content">feeling or showing pleasure or contentment.</p>
</div>
<div id="example"class=" bor-bot">
<h3>Example</h3>
<p class="small-content">Melissa came in looking happy and excited</p>
</div>
<div id="synonym">
<h3>Synonyms</h3>
<div class="small-content"></div>
</div>
</div>
</div>
</body>
</html>