-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (36 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dictionery</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="mobile.css">
</head>
<body>
<ul>
<li><a href="index.html">Home</a></li>
<li> <a href="memorizing.html">memorizing</a></li>
</ul>
<form class="Dictionery">
<input type="text" name="" id="search-input" placeholder="Enter a Word">
<select id="choose-answer">
<option value="Select">Select</option>
<option value="All">All</option>
<option value="Definitions">Definitions</option>
<option value="Examples">Examples</option>
<option value="Synonyms">Synonyms</option>
<option value="Antonyms">Antonyms</option>
</select>
</form>
<section id="display" class="show-data">
<div>
</div>
</section>
<div class="btn">
<label class="learned"> learned
<input type="checkbox" name="" class="learned" id="learned" ></label>
</div>
<script src="index.js"></script>
</body>
</html>