-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (36 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>DICTIONARY</h1>
<div class="inner-container">
<div class="search-container">
<div class="search-box">
<input type="text" id="input">
</div>
<div class="search-button">
<button id="btn-search"> <img src="loupe.png" alt="Search"></button>
</div>
</div>
<div class="answer-container">
<div class="answer-heading">
<div class="word">
<h1 id="word-heading">Hello</h1>
</div>
<div class="audio">
<img src="speaker-filled-audio-tool.png">
</div>
</div>
<div class="definition"><p id="definition-text">Enter the word in the search box which is used to interact with people</p></div>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>