-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitly-s.html
26 lines (26 loc) · 909 Bytes
/
bitly-s.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
<html>
<head>
<title>Bit.ly</title>
<link rel="icon" href="/assets/favicon.png" type="image/png"/>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet"/>
<link href="/assets/style.css" rel="stylesheet"/>
</head>
<body>
<main>
<h1>
<span style="color: rgb(83,131,236);">B</span>
<span style="color: rgb(216,81,64);">i</span>
<span style="color: rgb(241,191,66);">t</span>
<span style="color: rgb(83,131,236);">.</span>
<span style="color: rgb(88,166,92);">l</span>
<span style="color: rgb(216,81,64);">y</span>
</h1>
<form action="/shorten" method="post">
<div id="input-div">
<a href="{{ shortURL }}" target="_blank">{{ shortURL }}</a>
</div>
<button type="submit">Copy</button>
</form>
</main>
</body>
</html>