-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (45 loc) · 1.54 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!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="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="left">
<img src="images/logo.svg" alt="logo">
</div>
<div class="right">
<ul>
<li class="nav-item"><a class="nav-link" href="#"> Login </a></li>
<li class="nav-item"><a class="nav-link active" href="#"> Sign Up </a></li>
</ul>
</div>
</header>
<main>
<section>
<div class="content">
<h2> Maximize impact with short links. </h2>
<p> Experience link optimization at its finest with shortened URL platform. </p>
<button class="btn"> Get started </button>
</div>
<div class="image">
<img src="images/Programming-bro.svg" alt="image">
</div>
</section>
<section class="link-input">
<form class="input-container">
<input type="text" id="enterLink" placeholder="Shorten a link here" autocomplete="off" required />
<button class="input-btn" type="submit"> Shorten it </button>
</form>
</section>
<section>
<div id="shortenedURL">Shortened URL</div>
</section>
</main>
<script src="http://localhost:8001/script.js"></script>
<script src="script.js"></script>
</body>
</html>