-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (28 loc) · 933 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Dictionary JS</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro|Work+Sans:200,500" rel="stylesheet">
<script src="https://kit.fontawesome.com/9783530849.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<h1>Dictionary Js</h1>
</header>
<main class="dictionary">
<h2>Expand Your Vocabulary</h2>
<div class="container">
<h2>Enter a Word</h2>
<form id="form" autocomplete="off">
<input type="text" id="input" value="" placeholder="Search a word">
<button id="submit">Search</button>
</form>
<div id="responseField"></div>
</div>
</main>
<script src='https://code.jquery.com/jquery-3.1.0.min.js'></script>
<script src="index.js"></script>
</body>
</html>