-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (34 loc) · 1.14 KB
/
index.html
File metadata and controls
35 lines (34 loc) · 1.14 KB
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
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Linkify</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="./Assets/logo.jpeg">
</head>
<body>
<div class="header">
<img src="./Assets/logo.jpeg" alt="Linkify Logo">
<h1>Linkify</h1>
</div>
<div class="container">
<div class="card right-card">
<h2>Enter The Link You Want To Shorten</h2>
<input type="text" placeholder="Enter Long URL">
<button id="shorten" >Shorten</button>
</div>
<div class="card left-card">
<h2>The Output Will be Displayed Here</h2>
<input type="text" placeholder="Output">
<button id="copy" >Copy Short URL</button>
</div>
</div>
<footer class="footer">
<p>Linkify URL Shortener</p>
<p>By Raghav Sachdev</p>
</footer>
<script src="script.js"></script>
</body>
</html>