-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding-page.html
More file actions
69 lines (60 loc) · 2.53 KB
/
Copy pathlanding-page.html
File metadata and controls
69 lines (60 loc) · 2.53 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StickerShop - Get fun WhatsApp stickers at a very low price 😜</title>
<link rel="stylesheet" href="/assets/styles/landing-page.css">
</head>
<body>
<section class="whole-page">
<!-- Menu for desktop -->
<section>
<h2><a href="#" class="logo">StickerShop</a></h2>
<ul class="nav-links">
<li><a href="tutorial.html">How to use StickerShop</a></li>
<li><a href="signup.html">Create an account</a></li>
<li><a href="login.html">Log in</a></li>
</ul>
</section>
<header>
<h1>Get <span class="green">WhatsApp</span> stickers for any mood 😜</h1>
<div class="btns-flex">
<button class="get-started-btn">Get started! 🚀</button>
<button class="login-btn">Log in →</button>
</div>
</header>
<main>
<section>
<h2>Why choose StickerShop?</h2>
<div class="feature">
<h3>Fun & Vibrant Look</h3>
<p>StickerShop is built and designed to look fun and vibrant and make it fun for users to interact with.</p>
</div>
<div class="feature">
<h3>Cheap</h3>
<p>Sticker packs available on StickerShop are extremely cheap and affordable. Each sticker pack contains 15 stickers sold at NGN300.</p>
</div>
<div class="feature">
<h3>Simple and easy to use</h3>
<p>StickerShop is simple and easy to use or understand.</p>
</div>
</section>
<footer>
Built and maintained by <a class="link" href="https://zik-site.vercel.app">Zik</a> for <span class="fun">FUN!!</span>
</footer>
</main>
</section>
<!-- Desktop nav -->
<section class="menu">
<ul id="menu-list" class="d-none">
<li><a href="tutorial.html">How to use StickerShop</a></li>
<li><a href="signup.html">Create an account</a></li>
<li><a href="login.html">Log in</a></li>
</ul>
</section>
<span class="menu-btn">☰</span>
<span class="close-btn">×</span>
<script src="/assets/scripts/landing-page.js"></script>
</body>
</html>