-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (45 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<link rel="icon" href="img/favicon.png" type="image/png">
<meta charset="utf-8">
<title>Welcome to JavaScript</title>
<!-- Link your js below. -->
<script type="module" src="js/index.js"></script>
</head>
<body>
<div class="px-4 py-5 container">
<h1 class="text-center">Dictionary App</h1>
<form id="dictionary-search">
<div class="row">
<div class="mb-3 col-9">
<input
name="word"
type="text"
class="form-control"
placeholder="word"
>
</div>
<div class="mb-3 col-3">
<button type="submit" class="w-100 btn btn-primary">Add</button>
</div>
</div>
</form>
<div class="row">
<div class="col">
<h2 class="text-center">Recently Searched</h2>
<ul class="list-group recently-search-words">
</ul>
</div>
<div class="col">
<h2 class="text-center">Favourite Words</h2>
<ul class="list-group favourite-words">
</ul>
</div>
</div>
</div>
</body>
</html>