-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (46 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/book.png" type="image/jpg/png">
<link rel="stylesheet" href="style.css">
<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=Poppins:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Dictionary</title>
</head>
<body>
<div class="container">
<h1>Dictionary App!</h1>
<div class="box1" id="box1">
<div class="smalldiv">
<form onsubmit="start()">
<input type="text" id="myInput" required placeholder="Type your text here..">
<input type="submit" id="btn" value="Search">
</form>
</div>
<div class="smalldiv2">
<div class="innerdiv1">
<h3 id="h31"></h3>
<p id="soundicon"><i class="fa-solid fa-volume-high" onclick="playsound()"></i></p>
</div>
<div class="innerdiv2">
<h4 id="h41"></h4>
<h4 id="h42"></h4>
</div>
</div>
<div class="smalldiv3">
<h3 id="h32"></h3>
</div>
<div class="smalldiv4">
<h5 id="example"></h5>
</div>
</div>
</div>
</body>
<script src="script.js"></script>
</html>