-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDictionary.html
27 lines (27 loc) · 893 Bytes
/
Dictionary.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dictionary</title>
<link rel="stylesheet" href="Dictionary.css">
</head>
<body>
<main>
<section>
<article>
<input type="text" id="input_el" placeholder="Enter word">
<button id="search_btn">Search</button>
</article>
<article>
<h1>Word</h1>
<p class="sound"><span>Verb</span>/kʌm/</p>
</article>
<article>
<p class="definition"><span>Definition: </span>move or travel towards or into a place thought of as near or familiar to the speaker</p>
<p class="example">He is coming today for the party</p>
</article>
</section>
</main>
</body>
</html>