-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdictionary.html
More file actions
47 lines (23 loc) · 958 Bytes
/
dictionary.html
File metadata and controls
47 lines (23 loc) · 958 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page title</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="dictionary.css"/>
<script src="https://peculiar-codes.github.io/peculiar.github.io/peculiar.js"></script>
</head>
<body>
<div class="container">
<h2>Peculiar English Dictionary</h2>
<div id="fa">
<input type="text" class="form-control" id="search-input"/>
<span class="fa fa-search fa-2x btn" id="search" ></span>
</div>
<p>Search Any <strong>English</strong> word above! <warning class="yellow">No nationalities or languages allowed, just english words!</warning></p>
<div id="result"></div>
</div>
<script src="dictionary.js"></script>
</body>
</html>