-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (69 loc) · 2.14 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
57
58
59
60
61
62
63
64
65
66
67
68
69
<!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="assets/css/style.css">
<title>Dictionary app on th web</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="icon" href="assets/ico/logo.png" sizes="16x16" type="image/png">
<meta name="author" content="Strange">
<meta name="description" content="Simple Dictionary app on the web">
<meta name="theme-color" content="#E64545">
<meta name="mobile-web-app-capable" content="yes">
</head>
<body>
<div class="theme">
<label for="dark">Dark</label>
<input type="radio" style="display: none;" id="dark" name="dark">
<div class="range" id="toggler">
<div class="bounce" id="bounce"></div>
</div>
<label for="light">Light</label>
<input type="radio" id="light" name="dark" style="display: none;">
</div>
<div class="wrapper" id="wrapper">
<header id="h">
English Dictionary
</header>
<div class="search">
<input type="text" placeholder="Search a word" required id="input">
<i class="fas fa-search"></i>
<span class="material-icons" id="clear">close</span>
</div>
<p class="info-text" id="iText">Type a word and press enter to see results</p>
<ul>
<li class="word">
<div class="details">
<p id="word">**</p>
<span id="phonetics">__</span>
</div>
<i class="fas fa-volume-up" id="vol"></i>
</li>
<div class="content">
<li class="meaning">
<div class="details">
<p>Meaning</p>
<span id="meaning">__</span>
</div>
</li>
<li class="Example">
<div class="details">
<p>Example</p>
<span id="exp">__</span>
</div>
</li>
<li class="synonyms">
<div class="details" >
<p>Synonyms</p>
<div class="list" id="list"></div>
</div>
</li>
</div>
</ul>
</div>
<script src="https://cdn.jsdelivr.net/gh/Strange-bs/strange-js/js/strange.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>