-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (30 loc) · 1.08 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
<html>
<head>
<meta charset="utf-8">
<title id="title">Word Smith</title>
<link rel="stylesheet" type="text/css" href="/css/wordSmithStyle.css" />
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro|Work+Sans:200,500|Roboto:300" rel="stylesheet">
</head>
<body>
<header>
<img src="https://s3.amazonaws.com/codecademy-content/courses/intermediate-javascript-requests/wordsmith_logo.svg" id="logo" />
</header>
<main id="main">
<div class="container">
<h1 id="prompt">Enter a Word</h1>
<form id="form" autocomplete="off">
<input type="text" id="input" value="">
<button id="submit">SUBMIT</button>
<button id="shorten">Shorten</button>
</form>
<div id="responseField">
</div>
<!-- <button id="toggle">Switch to POST requests!</button> -->
</div>
</main>
<script src='https://code.jquery.com/jquery-3.1.0.min.js'></script>
<script src="/javascripts/main.js"></script>
<script src="/javascripts/helperFunctions.js"></script>
<script src="/javascripts/toggleSite.js"></script>
</body>
</html>