-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
36 lines (29 loc) · 970 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Byte Size</title>
<link rel="stylesheet" type="text/css" href="public/style.css" />
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
</head>
<body>
<header>
<img src="https://raw.githubusercontent.com/Iltwats/CDN/master/bytesize_logo.svg" class="logo" />
</header>
<main id="main">
<div class="container">
<h1>Enter a URL</h1>
<form id="form" autocomplete="off">
<input type="text" id="input" value="">
<button id="shorten">Shorten</button>
</form>
<div id="responseField">
</div>
</div>
</main>
<script src='https://code.jquery.com/jquery-3.1.0.min.js'></script>
<script src="public/main.js"></script>
<script src="public/helperFunctions.js"></script>
</body>
</html>