-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (29 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Url-shortner</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main-container">
<div class="container">
<label for="url"><h1>Url Shortener</h1></label>
<p>When a user clicks on the short Url, it should redirect to the destination Url</p>
<input type="text" id="url" placeholder=" Please Enter Your URL " >
<button onclick="shortURL()" id="btn">Short URL</button>
<div id="result"></div>
<button id="refresh" onclick="refreshPage()">Refresh</button>
</div>
</br><br>
<footer>
<p>© 2023 <a href="https://www.linkedin.com/in/wiola-lobo-a7aa10257/"> Wiola </a>. All rights reserved.</p>
</footer>
</div>
<script src="Script.js"></script>
</body>
</html>