-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (65 loc) · 2.62 KB
/
index.html
File metadata and controls
96 lines (65 loc) · 2.62 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/5ce8995bb5.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;700&family=Roboto:ital,wght@0,500;1,400&display=swap"
rel="stylesheet">
<title>Dictionary</title>
</head>
<body class="body">
<div class="container">
<!-- Header part -->
<header>
<nav>
<div class="icons">
<div class="book"><i class="fa-solid fa-book"></i></div>
<div class="dark-mode"><!-- Rounded switch -->
<label class="switch">
<input type="checkbox">
<span class="slider round"></span>
</label>
<i class="fa-solid fa-moon"></i>
</div>
</div>
</nav>
</header>
<div class="search-bar">
<input type="text" class="search" placeholder="Search for any word...">
<i class="fa-solid fa-magnifying-glass glass"></i>
</div>
<div class="word">
<h1 id="word">Dictionary</h1>
<button class="audio"><img src="./button-icon-png-21060.png" alt="" width="30px"> </button>
</div>
<!-- Main Part -->
<div class="noun">
<h3 class="pos1"></h3>
<hr>
<div class="meaning">
<p class="sorry">
Sorry, we couldn't find definitions for the word you were looking for.</p>
<p id="mean">Meaning</p>
<ul class="ul">
</ul>
</div>
</div>
<div class="noun secondpof">
<h3 class="pos2"></h3>
<hr>
<div class="meaning2">
<p id="mean">Meaning</p>
<ul class="ul secondul">
</ul>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>