-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathROGER.HTML
More file actions
63 lines (59 loc) · 2.07 KB
/
ROGER.HTML
File metadata and controls
63 lines (59 loc) · 2.07 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Shopier</title>
<link rel="stylesheet" href="ROGER.CSS" />
</head>
<body>
<header>
<div class="logo">SHOPI<span>ER</span></div>
<nav>
<button class="active">All</button>
<button>F1 team</button>
<button>Tiers</button>
<button>Suspension</button>
<button>Headlights</button>
</nav>
<div class="actions">
<input type="text" placeholder="Search products..." />
<div class="cart">
<span class="material-icons">shopping_cart</span>
<div class="badge">0</div>
</div>
</div>
</header>
<main>
<section class="product-grid">
<!-- Product 1 -->
<div class="product-card">
<img src="https://tse3.mm.bing.net/th/id/OIP.i0Nh0uVqdrd6AzdupFqyywHaEK?cb=ucfimg2ucfimg=1&rs=1&pid=ImgDetMain&o=7&rm=3" alt="Backpack" />
<h3>A Ferrari f1 car</h3>
<p>Perfect if you are late for work</p>
<div class="price">$1.95</div>
<button class="add">🛒 Add to cart</button>
</div>
<!-- Product 2 -->
<div class="product-card">
<img src="https://tse1.mm.bing.net/th/id/OIP.tUiz21Dq-nDQQwItKNwv-wHaEK?cb=ucfimg2ucfimg=1&w=1920&h=1080&rs=1&pid=ImgDetMain&o=7&rm=3" alt="T-Shirt" />
<h3>Dodge Challenger</h3>
<p>Perfect when you want good times in the backseat </p>
<div class="price">$2.30</div>
<button class="add">🛒 Add to cart</button>
</div>
<!-- Product 3 -->
<div class="product-card">
<img src="https://tse4.mm.bing.net/th/id/OIP.xIqSTgEhCL2PMYY-xgLRlwHaEK?cb=ucfimg2ucfimg=1&rs=1&pid=ImgDetMain&o=7&rm=3" alt="Jacket" />
<h3>Porshe 911</h3>
<p>Perfect to take your girl out on luxuly dates</p>
<div class="price">$3.99</div>
<button class="add">🛒 Add to cart</button>
</div>
</section>
</main>
<div class="chat-widget">
<div class="chat-header">💬 Hi! How can we help?</div>
</div>
</body>
</html>