-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (58 loc) · 1.36 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
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="assets/styles/style.css" />
<link
rel="icon"
href="assets/Images/favicon.png"
type="image"
sizes="any"
/>
<title>W O R D L Y</title>
</head>
<body>
<header>
<a
id="src"
href="https://github.com/snghnishant/Wordly"
target="_blank"
title="Get Source Code"
alt="View source code"
>
<img
src="assets/Images/github.svg"
alt="View source code on Github"
/>
</a>
</header>
<main>
<h1>Wordly</h1>
<p id="sub-head">word finding App</p>
<select id="select">
<option>Synonyms</option>
<option>Antonyms</option>
<option>Rhymes</option>
<option>Words Related to</option>
<option>Words Sounds Like</option>
</select>
<div class="search">
<input
autocomplete="off"
type="text"
id="query"
placeholder="Type Something"
/>
<button id="search-btn" onclick="queryResult()">Search</button>
</div>
<div class="sug-container">
<div id="suggestions"></div>
</div>
<div id="results"></div>
<script src="assets/javascript/search.js"></script>
<script src="assets/javascript/autocomplete.js"></script>
</main>
</body>
</html>