-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 828 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 828 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Link Shortner</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="maincontainer">
<h1>Link Shortner</h1>
<form>
<label for="long-url"><b>Enter the Link to be Shorten:</b></label>
<input type="text" id="long-url" name="long-url">
<button type="button" id="shorten-btn">Shorten</button>
</form>
<div id="short-url-container" style="display:none">
<p><b>Shortened Link:</b></p>
<div id="short-url">
<a href="" target="_blank"></a>
</div>
</div>
<div class="credit">copyright @2023 Link shortner - All rights reserved || Designed By : Dhanashree Naik || Web Development Intern at code alpha</div>
</div>
<script src="script.js"></script>
</body>
</html>