-
Notifications
You must be signed in to change notification settings - Fork 0
/
store.html
117 lines (117 loc) · 5.37 KB
/
store.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
<!DOCTYPE html>
<html>
<head>
<title>Saumu | Electronics</title>
<meta name="description" content="This is the description">
<link rel="stylesheet" href="style.css" />
<script src="style.js" async></script>
</head>
<body>
<header class="main-header">
<nav class="main-nav nav">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="products.html">STORE</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="sign in.html">Sign Up</a></li>
</ul>
</nav>
<h1 class="band-name band-name-large">Saumu Electronics</h1>
</header>
<section class="container content-section">
<h2 class="section-header">IPHONE CITY</h2>
<div class="shop-items">
<div class="shop-item">
<span class="shop-item-title">Iphone 12 pro</span>
<img class="shop-item-image" src="iphone 12.jpeg">
<div class="shop-item-details">
<span class="shop-item-price">Ksh 500000</span>
<button class="btn btn-primary shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Iphone 13 Pro Max 512GB </span>
<img class="shop-item-image" src="i13.jpeg">
<div class="shop-item-details">
<span class="shop-item-price">Ksh140,009</span>
<button class="btn btn-primary shop-item-button"type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Iphone 14 pro</span>
<img class="shop-item-image" src="114.jpeg">
<div class="shop-item-details">
<span class="shop-item-price">Ksh159099</span>
<button class="btn btn-primary shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Iphone 14 Pro max</span>
<img class="shop-item-image" src="promax.jpeg">
<div class="shop-item-details">
<span class="shop-item-price">Ksh 219999</span>
<button class="btn btn-primary shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
</div>
</section>
<section class="container content-section">
<h2 class="section-header">Appliances</h2>
<div class="shop-items">
<div class="shop-item">
<span class="shop-item-title">Iphone Cases</span>
<img class="shop-item-image" src="cas1.jpeg">
<div class="shop-item-details">
<span class="shop-item-price">Ksh 799</span>
<button class="btn btn-primary shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Iphone cables</span>
<img class="shop-item-image" src="cab.jpeg">
<div class="shop-item-details">
<span class="shop-item-price">Ksh800</span>
<button class="btn btn-primary shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
</div>
</section>
<section class="container content-section">
<h2 class="section-header">CART</h2>
<div class="cart-row">
<span class="cart-item cart-header cart-column">ITEM</span>
<span class="cart-price cart-header cart-column">PRICE</span>
<span class="cart-quantity cart-header cart-column">QUANTITY</span>
</div>
<div class="cart-items">
</div>
<div class="cart-total">
<strong class="cart-total-title">Total</strong>
<span class="cart-total-price">Ksh0</span>
</div>
<button class="btn btn-primary btn-purchase" type="button">PURCHASE</button>
</section>
<footer class="main-footer">
<div class="container main-footer-container">
<h3 class="band-name">Saumu Electronics</h3>
<ul class="nav footer-nav">
<li>
<a href="https://www.twitter.com" target="_blank">
<img src="tw.jpeg">
</a>
</li>
<li>
<a href="https://www.facebook.com" target="_blank">
<img src="fab.jpeg">
</a>
</li>
<li>
<a href="https://www.instagram.com" target="_blank">
<img src="iG.jpeg">
</a>
</li>
</ul>
</div>
</footer>
</body>
</html>