forked from maheshkk/samsung-shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
150 lines (134 loc) · 4.16 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!doctype html>
<html>
<head>
<title>Samsung Demo Shop</title>
<link rel="stylesheet" href="src/css/styles.css">
<script src="https://code.jquery.com/jquery-3.1.1.slim.js" crossorigin="anonymous"></script>
<script src="src/js/script.js"></script>
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
</head>
<body>
<nav class="product-filter">
<div>menu</div>
<div>
<h2 align="center">Samsung Shop</h2>
</div>
<div id = "shopping-cart">
<img src="">
<i id = "shopping-cart-count">0</i>
</div>
</nav>
<section class="products">
<div class="product-card">
<div class="product-image">
<img src="src/img/samsunggalaxys7.jpg">
</div>
<div class="product-info">
<h5>Samsung Galaxy S7</h5>
<h6>$19999.99</h6>
</div>
</div>
<div class="product-card">
<div class="product-image">
<img src="src/img/gears3frontier.jpg">
</div>
<div class="product-info">
<h5>Gear S3 Frontier</h5>
<h6>$299.99</h6>
</div>
</div>
<div class="product-card">
<div class="product-image">
<img src="src/img/gears3classic.jpg">
</div>
<div class="product-info">
<h5>Gear S3 Classic</h5>
<h6>$299.99</h6>
</div>
</div>
<div class="product-card">
<div class="product-image">
<img src="src/img/gear360camera.jpg">
</div>
<div class="product-info">
<h5>Gear 360 Camera</h5>
<h6>$299.99</h6>
</div>
</div>
<div class="product-card">
<div class="product-image">
<img src="src/img/gearvr2.jpg">
</div>
<div class="product-info">
<h5>Gear VR 2</h5>
<h6>$99.99</h6>
</div>
</div>
<div class="product-card">
<div class="product-image">
<img src="src/img/gearvr.jpg">
</div>
<div class="product-info">
<h5>Gear VR</h5>
<h6>$0.00</h6>
</div>
</div>
<div class="product-card">
<div class="product-image">
<img src="src/img/wirelesscharger.jpg">
</div>
<div class="product-info">
<h5>Wireless Charger</h5>
<h6>$0.01</h6>
</div>
</div>
<div class="product-card">
<div class="product-image">
<img src="src/img/gears2.jpg">
</div>
<div class="product-info">
<h5>Gear S2</h5>
<h6>$0.02</h6>
</div>
</div>
<div class="product-card">
<div class="product-image">
<img src="src/img/s3wirelesscharger.jpg">
</div>
<div class="product-info">
<h5>S3 Wireless Charger</h5>
<h6>$0.03</h6>
</div>
</div>
<div class="product-card">
<div class="product-image">
<img src="src/img/bluetoothheadphones.jpg">
</div>
<div class="product-info">
<h5>Bluetooth Headphone</h5>
<h6>$0.99</h6>
</div>
</div>
</section>
<div id="single-product">
<div class="product-card">
<div class="product-page-hide">X</div>
<div class="product-image">
<img src="">
</div>
<div class="product-info">
<h2></h2>
<h1></h1>
</div>
</div>
<div>
<div class="product-buy-button" id="addToCart">
<h5>ADD TO CART</h5>
</div>
<div class="product-buy-button" id="buyNow">
<h5>BUY NOW</h5>
</div>
</div>
</div>
</body>
</html>