mirror of
https://github.com/CragglesG/url-shortener.git
synced 2025-05-14 08:13:06 +00:00
Added HTML and server
This commit is contained in:
parent
1d0b82436d
commit
d02ca243eb
14 changed files with 191 additions and 1 deletions
14
submitted.html
Normal file
14
submitted.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!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>
|
Loading…
Add table
Add a link
Reference in a new issue