-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (75 loc) · 3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Splash Page</title>
<link rel="apple-touch-icon" sizes="180x180" href="./favicon/warm/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon/warm/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon/warm/favicon-16x16.png">
<link rel="manifest" href="./favicon/warm/site.webmanifest">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="wrapper">
<!-- Brand Logo -->
<img
src="./img/habitual-branding.png"
alt="Habitual Logo"
class="brand-img"
/>
<!-- Background Toggle -->
<div class="background-toggles" title="Change Background">
<div class="background-1" onclick="changeBackground('1')"></div>
<div class="background-2" onclick="changeBackground('2')"></div>
<div class="background-3" onclick="changeBackground('3')"></div>
</div>
<!-- Title & Text -->
<div class="text-container">
<h1 class="title">Find the stuff you’ll love.</h1>
<p class="text">
Aliquam rhoncus pretium dolor volutpat lectus odio non
tellus neque. Aliquet et purus nibh bibendum integer etiam
in enim nisi.
</p>
<div class="app-store-btn">
<a href="htttps://apple.com" target="_blank">
<img src="./img/app-store-button.png" alt="App Store" />
</a>
</div>
<div class="google-play-btn">
<a href="htttps://play.google.com" target="_blank">
<img
src="./img/google-play-button.png"
alt="Google Play"
/>
</a>
</div>
</div>
<!-- Main Image -->
<div class="main-image-container">
<img src="./img/main-image.png" alt="Landing Page Mockup" />
</div>
<!-- Images -->
<img
src="./img/profile.png"
alt="Profile Mockup"
class="profile-img"
/>
<img
src="./img/orders.png"
alt="Orders Mockup"
class="orders-img"
/>
<img src="./img/home.png" alt="Home Mockup" class="home-img" />
<img src="./img/cart.png" alt="Cart Mockup" class="cart-img" />
<img
src="./img/product.png"
alt="Product Mockup"
class="product-img"
/>
</div>
<!-- Script -->
<script src="script.js"></script>
</body>
</html>