-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
175 lines (161 loc) · 5.71 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@500;700;800&display=swap"
rel="stylesheet"
/>
<title>Shortly URL shortening API Challenge</title>
<link rel="stylesheet" href="static/styles/main.css" />
</head>
<body>
<header class="header">
<div class="wrapper-header">
<div class="brand">
<img src="images/logo.svg" alt="logo" />
</div>
<div class="burger-menu">
<div class="top-bar"></div>
<div class="middle-bar"></div>
<div class="bottom-bar"></div>
</div>
<nav class="navbar visible">
<ul class="navbar-items">
<li><a href="#">Features</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Resources</a></li>
</ul>
<ul class="navbar-items-user">
<li><a href="#" class="log-item">Login</a></li>
<li><a href="#" class="log-item">Sign Up</a></li>
</ul>
</nav>
</div>
</header>
<div class="wrapper">
<main class="main-section">
<section class="main-section-image"></section>
<section class="main-section-info">
<h1 class="section-info-title">More than just shorter links</h1>
<p class="section-info-text">
Build your brand’s recognition and get detailed insights on how your
links are performing.
</p>
<a href="#links" class="btn-main-section">Get Started</a>
</section>
</main>
</div>
<section class="links">
<div class="wrapper">
<div class="card-input-link">
<div class="input-container">
<input
id="links"
type="url"
class="input-link"
placeholder="Shorten a link here..."
/>
<div class="spinner">
<img src="images/spinner.gif" alt="spinner" />
</div>
</div>
<a href="#" class="btn-input-link">Shorten It!</a>
</div>
<div class="output-links"></div>
</div>
</section>
<section class="info-page-section">
<div class="wrapper">
<article class="info-text">
<h2 class="article-info-title">Advanced Statistics</h2>
<p class="article-info-text">
Track how your links are performing across the web with our advanced
statistics dashboard.
</p>
</article>
<article class="info-cards">
<div class="info-card">
<div class="card-image"></div>
<h3 class="title-card">Brand Recognition</h3>
<p class="text-card">
Boost your brand recognition with each click. Generic links don’t
mean a thing. Branded links help instil confidence in your
content.
</p>
</div>
<div class="info-card">
<div class="card-image"></div>
<h3 class="title-card">Detailed Records</h3>
<p class="text-card">
Gain insights into who is clicking your links. Knowing when and
where people engage with your content helps inform better
decisions.
</p>
</div>
<div class="info-card">
<div class="card-image"></div>
<h3 class="title-card">Fully Customizable</h3>
<p class="text-card">
Improve brand awareness and content discoverability through
customizable links, supercharging audience engagement.
</p>
</div>
</article>
</div>
</section>
<section class="promo">
<div class="wrapper">
<h2 class="promo-title">Boost your links today</h2>
<a href="#links" class="btn-boost-section">Get Started</a>
</div>
</section>
<footer class="footer">
<div class="wrapper-footer">
<div class="brand-footer">
<img src="images/logo-footer.svg" alt="" />
</div>
<section class="footer-section">
<p class="footer-section-title">Features</p>
<p class="text-footer">Link Shortening</p>
<p class="text-footer">Branded Links</p>
<p class="text-footer">Analytics</p>
</section>
<section class="footer-section">
<p class="footer-section-title">Resources</p>
<p class="text-footer">Blog</p>
<p class="text-footer">Developers</p>
<p class="text-footer">Support</p>
</section>
<section class="footer-section">
<p class="footer-section-title">Company</p>
<p class="text-footer">About</p>
<p class="text-footer">Our Team</p>
<p class="text-footer">Careers</p>
<p class="text-footer">Contact</p>
</section>
<div class="socials">
<img src="images/icon-facebook.svg" alt="facebook" />
<img src="images/icon-twitter.svg" alt="twitter" />
<img src="images/icon-pinterest.svg" alt="pinterest" />
<img src="images/icon-instagram.svg" alt="instagram" />
</div>
<div class="attribution">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank"
>Frontend Mentor</a
>. Coded by
<a href="https://github.com/slqpez" target="_blank">Slqpez 🐠</a>.
</div>
</div>
</footer>
<script type="module" src="static/js/app.js"></script>
</body>
</html>