-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (103 loc) · 4.5 KB
/
index.html
File metadata and controls
108 lines (103 loc) · 4.5 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VintageCharm</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<div class="logo">Vintage Charm</div>
<ul>
<li><a href="#home" class="navbar">Home</a></li>
<li><a href="#featured-products" class="navbar" >Products</a></li>
<li><a href="#hero" class="navbar">About</a></li>
<li><a href="#contact" class="navbar">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="hero">
<video autoplay loop muted playsinline>
<source src="video.mp4" type="video/mp4">
</video>
<h1>Welcome to VintageCharm</h1>
<p>Discover the best vintage Products[CAR}</p>
<a href="#featured-products" class="cta-button">Shop Now</a>
</section>
<section id="featured-products">
<h2>Featured Products</h2>
<div class="scroll-container">
<button class="scroll-button left">←</button>
<div class="product-grid">
<div class="product-card">
<img src="./product-img/product1.avif" height="200px" width="300px" alt="Product 1">
<h3>1966 Ford Mustang<br><br></h3>
<p>USD 83 908</p>
<a href="#contact" class="shbutton">CONTACT SELLER</a>
</div>
<div class="product-card">
<img src="./product-img/product2.avif" height="200px" width="300px" alt="Product 2">
<h3>1984 Opel Kadett<br><br></h3>
<p>Price on Request</p>
<a href="#contact" class="shbutton">CONTACT SELLER</a>
</div>
<div class="product-card">
<img src="./product-img/product3.avif" height="200px" width="300px" alt="Product 3">
<h3>1971 Plymouth Cuda 572</h3><br>
<p>USD 251 618</p>
<a href="#contact" class="shbutton">CONTACT SELLER</a>
</div>
<div class="product-card">
<img src="./product-img/product4.avif" height="200px" width="300px" alt="Product 4">
<h3>1997 Porsche Porsche 911 </h3><br>
<p>USD 136 435</p>
<a href="#contact" class="shbutton">CONTACT SELLER</a>
</div>
<div class="product-card">
<img src="./product-img/product5.avif" height="200px" width="300px" alt="Product 5">
<h3>2021 Maserati MC20</h3><br>
<p>USD 223 439</p>
<a href="#contact" class="shbutton">CONTACT SELLER</a>
</div>
<div class="product-card">
<img src="./product-img/product6.avif" height="200px" width="300px" alt="Product 6">
<h3>1962 Jaguar E-Type SI<br><br></h3>
<p>Price on Request.</p>
<a href="#contact" class="shbutton">CONTACT SELLER</a>
</div>
</div>
<button class="scroll-button right">→</button>
</div>
</section>
</main>
<footer>
<div class="footer-content">
<div class="footer-section" id="about">
<h4>About Us</h4>
<p>Discover the best vintage cars.</p>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<ul>
<li><a href="#hero">Home</a></li>
<li><a href="#featured-products">Products</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="footer-section" id="contact">
<h4>Contact Us</h4>
<p>Email: vintagecharm@gmail.com</p>
<p>Phone: +91 00000000</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Vintage Charm. All rights reserved.</p>
</div>
</footer>
<script src="scripts.js"></script>
</body>
</html>