-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
137 lines (134 loc) · 5.75 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="./Utilities/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./Utilities/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./Utilities/favicon-16x16.png">
<link rel="manifest" href="./Utilities/site.webmanifest">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<title>URL Shortening Application</title>
</head>
<body>
<!-- navbar start -->
<nav class="navbar">
<div class="logo">Shortify</div>
<div class="nav-menu">
<ul class="nav-links">
<li>Features</li>
<li>Pricing</li>
<li>Resources</li>
</ul>
</div>
<div class="nav-btns">
<button class="nav-btn">Log In</button>
<button class="nav-btn active">Sign Up</button>
</div>
</nav>
<!-- navbar end -->
<!-- main body start -->
<div class="main">
<div class="intro">
<div class="intro-left">
<p class="intro_p1">More than just <br/>shorter links</p>
<p class="intro_p2">
Build your brand's recognition and get detailed <br/>
insights on how your links are performing
</p>
<button>Get Started</button>
</div>
<div class="intro-right">
<img src="./Utilities/illustration-working.svg">
</div>
</div>
<div class="url_shortener">
<form class="shorten-url-form" onsubmit="urlShortener(event)">
<input type="url" placeholder="Shorten a link here ..." >
<button type="submit">Shorten it!</button>
</form>
<div id="result"></div>
</div>
<div class="features">
<h1>Advanced Statictics</h1>
<p>
Track how your links are performing across web with </br>
our advanced statictics dashboard.
</p>
<div class="cards">
<div class="card">
<div class="card-icon">
<img src="./Utilities/icon-brand-recognition.svg">
</div>
<div class="card-title">Brand Recognition</div>
<div class="card-body">
Boost your brand recognition with each click. Generic links don’t mean a thing.
Branded links help instil confidence in your content.
</div>
</div>
<div class="card">
<div class="card-icon">
<img src="./Utilities/icon-detailed-records.svg">
</div>
<div class="card-title">Detailed Records</div>
<div class="card-body">
Gain insights into who is clicking your links. Knowing when and where people engage
with your content helps inform better decisions.
</div>
</div>
<div class="card">
<div class="card-icon">
<img src="./Utilities/icon-fully-customizable.svg">
</div>
<div class="card-title">Fully Customizable</div>
<div class="card-body">
Improve brand awareness and content discoverability through customizable links,
supercharging audience engagement.
</div>
</div>
</div>
</div>
<div class="getStarted">
<h1>Boost your links today</h1>
<button>Get Started</button>
</div>
</div>
<!-- main body start -->
<!-- footer start -->
<footer class="footer">
<div class="logo" style="color: white;">
Shortify
</div>
<div class="footer_div2">
<div>
<p>Features</p>
<a href="#">Link Shortening</a>
<a href="#">Branded Links</a>
<a href="#">Analytics</a>
</div>
<div>
<p>Resources</p>
<a href="#">Blog</a>
<a href="#">Developers</a>
<a href="#">Support</a>
</div>
<div>
<p>Company</p>
<a href="#">About</a>
<a href="#">Our Team</a>
<a href="#">Careers</a>
<a href="#">Contact</a>
</div>
</div>
<div class="footer_div3">
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-pinterest"></i>
<i class="fa-brands fa-square-x-twitter"></i>
</div>
</footer>
<!-- footer start -->
<script src="script.js"></script>
</body>
</html>