-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (135 loc) · 4.56 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
<!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 rel="stylesheet" href="./styles.css" />
<title>Shortly URL shortening API Challenge</title>
<script defer src="./app.js"></script>
<!-- Ionicons icon -->
<script defer type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script defer nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
</head>
<body>
<header>
<ul class="header__pageNav">
<li>Features</li>
<li>Pricing</li>
<li>Resources</li>
</ul>
<ul class="header__login">
<li>Login</li>
<li><b>Sign Up</b></li>
</ul>
<div id="burgermenu">
<div class="burgermenu__clickevent"></div>
<div class="burgermenu__container">
<ul>
<li>Features</li>
<li>Pricing</li>
<li>Resources</li>
<li>Login</li>
<li><b>Sign Up</b></li>
</ul>
</div>
</div>
</header>
<main>
<section class="ShortInfoObject">
<div>
<h1>More than just shorter links</h1>
<div>Build your brand’s recognition and get detailed insights on how your links are performing.</div>
<button><b>Get Started</b></button>
</div>
<img src="./images/illustration-working.svg" alt="" />
</section>
<section class="link_shredder">
<form action="" id="link_shredder__form" pole_status>
<input type="text" id="link_shredder__typetext" placeholder="Shorten a link here..." />
<button>Shorten It!</button>
</form>
</section>
<section id="ShortLinkContainer">
<ul></ul>
</section>
<section class="AdvancedStatistics">
<b>Advanced Statistics</b>
<div>Track how your links are performing across the web with our advanced statistics dashboard.</div>
</section>
<section id="FullStateInfo">
<div class="FullStateInfo__container">
<h2>Brand Recognition</h2>
<div>
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="FullStateInfo__container">
<h2>Detailed Records</h2>
<div>
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="FullStateInfo__container">
<h2>Fully Customizable</h2>
<div>
Improve brand awareness and content discoverability through customizable links, supercharging audience
engagement.
</div>
</div>
</section>
</main>
<section id="BoostLinkButton">
<h2>Boost your links today</h2>
<button><b>Get Started</b></button>
</section>
<footer>
<div>
<img src="./images/logo.svg" alt="" />
<ul class="footer__features">
<li><b>Features</b></li>
<li>Link Shortening</li>
<li>Branded Links</li>
<li>Analytics</li>
</ul>
<ul class="footer__resourses">
<li><b>Resources</b></li>
<li>Blog</li>
<li>Developers</li>
<li>Support</li>
</ul>
<ul class="footer__company">
<li><b>Company</b></li>
<li>About</li>
<li>Our Team</li>
<li>Careers</li>
<li>Contact</li>
</ul>
<ul class="footer__contact">
<li>
<a href="https://www.facebook.com/profile.php?id=100008296452572" target="_blank">
<img src="./images/icon-facebook.svg" alt="" />
</a>
</li>
<li>
<a href="https://twitter.com/karanelus" target="_blank">
<img src="./images/icon-twitter.svg" alt="" />
</a>
</li>
<li>
<a href="https://www.pinterest.com/Karanelus/" target="_blank">
<img src="./images/icon-pinterest.svg" alt="" />
</a>
</li>
<li>
<a href="https://www.instagram.com/karanelus/" target="_blank">
<img src="./images/icon-instagram.svg" alt="" />
</a>
</li>
</ul>
</div>
</footer>
</body>
</html>