-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (26 loc) · 723 Bytes
/
index.html
File metadata and controls
30 lines (26 loc) · 723 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="description" content="Shrink yo link" />
<meta name="keywords" content="one, two, three" />
<title>Get Shorty | URL Shortener</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="background--custom">
<h1>Get Shorty 🔗</h1>
<h3>A Friendly URL Shortener 😀</h3>
<input
type="text"
name=""
value=""
placeholder="https://example.com/really-really/long/link"
/>
<button type="button" name="button">Get Your Shorty</button>
<h2>Short Link:</h2>
<h4>Your short link will be here</h4>
</div>
<script type="text/javascript" src="main.js"></script>
</body>
</html>