-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1.44 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
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Lengthen your URLs with blazing fast URL lengthening">
<meta property="og:title" content="Blazing Fast URL Lengthener">
<meta property="og:image" content="https://cdn.statically.io/og/theme=dark/Blazing%20Fast%20URL%20Lengthener.jpg">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/punycode.js" integrity="sha256-YJzyKI/Jc9Sz719PldSKosV/jJZ47QJ/Ma3INrvQdts=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="/public/main.css">
<title>Blazing Fast URL Lengthener</title>
</head>
<body>
<div class="container">
<h1>Blazing Fast URL Lengthener</h1>
<p>
Lengthen your URLs with blazing fast URL lengthening.
</p>
<form id="lengthen-form">
<input type="text" name="url" id="lengthen-form-url" placeholder="Enter URL to lengthen">
<input type="submit" value="Lengthen!">
</form>
<div id="lengthen-result-box" hidden>
<br>
<input type="text" id="lengthen-result" readonly>
<button id="copy-button">Copy</button>
<hr>
<button id="clear-button">Clear</button>
</div>
</div>
<script src="/public/main.js"></script>
</body>
</html>