-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
176 lines (166 loc) · 5.08 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
176
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- displays site properly based on user's device -->
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<script defer src="script.js"></script>
<title>Frontend Mentor | Shortly URL shortening API Challenge</title>
</head>
<body>
<header class="header">
<div>
<img src="/images/logo.svg" alt="" />
<div>
<span class="menu-item">Features</span>
<span class="menu-item">Pricing</span>
<span class="menu-item">Resources</span>
</div>
</div>
<div>
<span class="menu-item">Login</span>
<button class="btn">Sign Up</button>
</div>
</header>
<main>
<div class="info-container">
<div>
<h1>
More than just <br />
shorter links
</h1>
<span class="subtext">
Build your brand’s recognition and get detailed insights on how your
links are performing.</span
>
<br />
<button class="btn btn-get-started">Get Started</button>
</div>
<img src="/images/illustration-working.svg" alt="" />
</div>
<div class="url-container">
<input id="urlInput" placeholder="Shorten a link here..." type="text" />
<button id="shortenBtn" class="btn btn-square">Shorten it!</button>
<span class="warning-text"><i>Please add a link!</i></span>
</div>
<section>
<div id="card-container"></div>
</section>
<section class="statistics">
<h2>Advanced Statistics</h2>
<span class="subtext">
Track how your links are performing across the web with <br />
our advanced statistics dashboard.
</span>
</section>
<section>
<div class="statistics-cards">
<div class="statistics-card">
<div class="statistics-card-icon-container">
<img
width="35px"
src="/images/icon-brand-recognition.svg"
alt=""
/>
</div>
<h5>Brand Recognition</h5>
<span class="card-text"
>Boost your brand recognition with each click. Generic links don’t
mean a thing. Branded links help instil confidence in your
content.</span
>
</div>
<div class="statistics-card">
<div class="statistics-card-icon-container">
<img
width="35px"
src="/images/icon-detailed-records.svg"
alt=""
/>
</div>
<h5>Detailed Records</h5>
<span
>Gain insights into who is clicking your links. Knowing when and
where people engage with your content helps inform better
decisions.
</span>
</div>
<div class="statistics-card">
<div class="statistics-card-icon-container">
<img
width="35px"
src="/images/icon-fully-customizable.svg"
alt=""
/>
</div>
<h5>Fully Customizable</h5>
<span
>Improve brand awareness and content discoverability through
customizable links, supercharging audience engagement.
</span>
</div>
</div>
</section>
</main>
<section class="boost-links-section">
<h1>Boost your links today</h1>
<button class="btn btn-get-started">Get Started</button>
</section>
<footer class="footer">
<div class="footer--container">
<div>
<h2>Shortly</h2>
</div>
<div>
<h5>Features</h5>
<ul>
<li>Link Shortening</li>
<li>Branded Links</li>
<li>Analytics</li>
</ul>
</div>
<div>
<h5>Resources</h5>
<ul>
<li>Blog</li>
<li>Developers</li>
<li>Support</li>
</ul>
</div>
<div>
<h5>Company</h5>
<ul>
<li>About</li>
<li>Our Team</li>
<li>Careers</li>
<li>Contact</li>
</ul>
</div>
<div>
<!-- <object
type="image/svg+xml"
data="/images/icon-twitter.svg"
class="icon"
>
</object> -->
<img src="/images/icon-facebook.svg" alt="" />
<img src="/images/icon-twitter.svg" alt="" />
<img src="/images/icon-pinterest.svg" alt="" />
<img src="/images/icon-instagram.svg" alt="" />
</div>
</div>
</footer>
</body>
</html>