-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmonster.html
More file actions
75 lines (71 loc) · 2.02 KB
/
monster.html
File metadata and controls
75 lines (71 loc) · 2.02 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
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hot Wheels Monster Truck</title>
<link rel="stylesheet" href="monstertruck.css">
</head>
<body>
<header>
<h1>Hot Wheels Monster Trucks</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#products">Products</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section class="hero">
</section>
<section id="products" class="products">
<h2>Our Monster Trucks</h2>
<div class="product-grid">
<div class="product-card">
<img src="car6.jpg" alt="Monster Truck 1">
<h3>Monster Truck Alpha</h3>
<p>$25.99</p>
<button class="btn">Add to Cart</button>
</div>
<div class="product-card">
<img src="car3.jpeg" alt="Monster Truck 2">
<h3>Monster Truck Blaze</h3>
<p>$29.99</p>
<button class="btn">Add to Cart</button>
</div>
<div class="product-card">
<br>
<br>
<img src="car4.jpeg" alt="Monster Truck 3">
<br>
<br>
<h3>Monster Truck Thunder</h3>
<p>$34.99</p>
<button class="btn">Add to Cart</button>
</div>
<div class="product-card">
<img src="car5.jpeg" alt="Monster Truck 4">
<h3>Monster Truck Crusher</h3>
<p>$27.99</p>
<button class="btn">Add to Cart</button>
</div>
<div class="product-card">
<img src="car7.jpeg" alt="Monster Truck 5">
<h3>Monster Truck Cyclone</h3>
<p>$32.99</p>
<button class="btn">Add to Cart</button>
</div>
<div class="product-card">
<img src="car8.jpeg" alt="Monster Truck 6">
<h3>Monster Truck Inferno</h3>
<p>$35.99</p>
<button class="btn">Add to Cart</button>
</div>
</div>
</section>
<footer>
<p>© | Designed by Rudransh❤️ | All rights reserved.</p>
</footer>
</body>
</html>