-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (30 loc) · 1018 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
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Word Smith</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro|Work+Sans:200,500" rel="stylesheet">
</head>
<body>
<header>
<img src="https://s3.amazonaws.com/codecademy-content/courses/intermediate-javascript-requests/wordsmith_logo.svg" class="logo" />
</header>
<main id="main">
<div class="container">
<h1>What's the Word?</h1>
<h3>Find the perfect term!</h3>
<form id="form" autocomplete="off">
<input type="text" id="input" value="" placeholder="Type a word">
<input type="text" id="topic" value="" placeholder="Type a topic">
<button id="submit">SUBMIT</button>
</form>
<div id="responseField">
</div>
</div>
</main>
<script src='https://code.jquery.com/jquery-3.1.0.min.js'></script>
<script src="main.js"></script>
<script src="helper.js"></script>
</body>
</html>