-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (49 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link rel="icon" type="image/png" href="img/favicon.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<!-- Brand logo -->
<a href="index.html"><img src="./img/logo.png" alt="logo" class="brand-img"></a>
<!-- Title & Txt -->
<div class="container">
<div class="text-container">
<h1 class="title">Find the stuff you love.</h1>
<p class="txt">Kirshop app sends you relevant items based off of your habits and interests. No fees, free shipping and amazing customer service. Shop with pleasure and enjoy!</p>
<div class="buttons flex">
<div class="app-store btn">
<a href="https://www.apple.com" target="_blank">
<img src="./img/app-store-button.png" alt="App Store">
</a>
</div>
<div class="google-play-btn btn">
<a href="https://play.google.com" target="_blank">
<img src="./img/google-play-button.png" alt="Google Play">
</a>
</div>
<div class="proto-btn btn" class=>
<a href="prototypes.html">
Prototypes
</a>
</div>
</div>
</div>
<!-- Main Image -->
<div class="main-image-container">
<img src="./img/Main image.png" alt="Landing Page Mu">
</div>
<!-- Images -->
<img src="./img/profile.png" alt="Profile Mu" class="profile-img">
<img src="./img/orders.png" alt="Orders Mu" class="orders-img">
<img src="./img/home.png" alt="Home Mu" class="home-img">
<img src="./img/cart.png" alt="Cart Mu" class="cart-img">
<img src="./img/product.png" alt="Product Mu" class="product-img">
</div>
</body>
</html>