mirror of
https://github.com/CragglesG/url-shortener.git
synced 2024-11-21 20:43:39 +00:00
14 lines
No EOL
618 B
HTML
14 lines
No EOL
618 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-us">
|
|
<head>
|
|
<title>URL Shortener</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
</head>
|
|
<body>
|
|
<h1 class="p-2">URL Shortener</h1>
|
|
<p class="ps-2">Your URL has been shortened!</p>
|
|
<a href="/" class="p-2">Shorten another one!</a>
|
|
</body>
|
|
</html> |