18 lines
571 B
HTML
18 lines
571 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Zip My Link</title>
|
|
<link rel="stylesheet" href="static/main.css">
|
|
</head>
|
|
<body>
|
|
<h1>Zip My Link</h1>
|
|
<p>Type your long URL into the box and get a shorter URL back!</p>
|
|
<input type="text" id="url-input" placeholder="Enter your URL here">
|
|
<button onclick="shortenUrl()" id="submit-btn">Shorten Url</button>
|
|
<p id="result"></p>
|
|
<script src="static/main.js"></script>
|
|
</body>
|
|
</html>
|