-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 1.86 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Splash Page</title>
<link rel="icon" type="image/png" href="./icon.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper"></div>
<!-- Brand Logo -->
<img src="./img/boxed-branding.png" alt="Boxed Logo"
class="brand-img">
<!-- Title & Text -->
<div class="text-container">
<h1 class="title">We've got the coffee you'll love so much!</h1>
<p class="text">Boxed is a fast and trouble-free delivery in 2 working days. Support at each stage. Fresh beans and regular updates.</p>
<div class="app-store-btn">
<a href="https://www.apple.com/app-store/" target="_blank">
<img src="./img/app-store-button.png" alt="App Store">
</a>
</div>
<div class="google-play-btn">
<a href="https://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/cart.png" alt="Cart Page" class="cart-img">
<img src="./img/home1.png" alt="Home Page" class="home1-img">
<img src="./img/home2.png" alt="Home Page Scrolled" class="home2-img">
<img src="./img/orders.png" alt="Orders Page" class="orders-img">
<img src="./img/product.png" alt="Product Page" class="product-img">
<img src="./img/profile.png" alt="Profile Page" class="profile-img">
<img src="./img/wishlist.png" alt="Wishlist Page" class="wishlist-img">
<!-- Script -->
<script src="script.js"></script>
</body>
</html>