gull/public/index.html

35 lines
1.1 KiB
HTML
Raw Normal View History

2020-05-12 04:19:28 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
2020-05-17 02:44:45 +02:00
<title>gull</title>
2020-05-12 04:19:28 +02:00
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2020-05-17 02:44:45 +02:00
<meta name="description" content="A simple, modern URL shortener" />
<link rel="icon" href="data:,">
2020-05-17 02:44:45 +02:00
<script async defer src="https://use.fontawesome.com/e98027591e.js"></script>
<script async defer src="index.js"></script>
2020-05-13 20:52:18 +02:00
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap" rel="stylesheet" />
<link href="style.css" rel="stylesheet" />
2020-05-12 04:19:28 +02:00
</head>
<body>
2020-05-17 02:44:45 +02:00
<main>
<form id="url-form">
<input id="url" name="url" type="text" placeholder="paste a long url" autofocus required />
<input id="alias" name="alias" type="text" placeholder="custom alias (optional)" />
<button id="btn" class="gradient-text">shorten</button>
</form>
<div id="result"></div>
</main>
<footer>
<a href="https://github.com/aeolyus/gull">
<i class="fa fa-github"></i> made with <i class="fa fa-heart"></i> by aeolyus
</a>
</footer>
2020-05-17 02:44:45 +02:00
</body>
2020-05-12 04:19:28 +02:00
</html>