-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
126 lines (109 loc) · 3.34 KB
/
index2.html
File metadata and controls
126 lines (109 loc) · 3.34 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Velocity Garage</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Orbitron', sans-serif;
}
body {
background-color: #111;
color: #fff;
line-height: 1.6;
}
header {
height: 100vh;
background: url('https://www.wsupercars.com/wallpapers-regular/Genesis/2025-Genesis-X-Gran-Coupe-and-Convertible-Concept-003-2000.jpg') no-repeat center center/cover;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
header h1 {
background-color: rgba(0, 0, 0, 0.6);
padding: 20px;
font-size: 3rem;
border: 2px solid #fff;
}
nav {
background-color: #000;
padding: 15px;
text-align: center;
}
nav a {
color: #ccc;
margin: 0 15px;
text-decoration: none;
font-size: 1rem;
}
nav a:hover {
color: #fff;
}
.section {
padding: 60px 20px;
max-width: 1200px;
margin: auto;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.gallery img {
max-width: 100%;
width: 350px;
height: auto;
border: 2px solid #444;
border-radius: 8px;
transition: transform 0.3s;
}
.gallery img:hover {
transform: scale(1.05);
}
footer {
background-color: #000;
color: #999;
text-align: center;
padding: 20px;
margin-top: 40px;
}
</style>
</head>
<body>
<nav>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#gallery">Gallery</a>
<a href="#contact">Contact</a>
</nav>
<header id="home">
<h1>VELOCITY GARAGE</h1>
</header>
<section id="about" class="section">
<h2>About Velocity Garage</h2>
<p>Welcome to Velocity Garage — a tribute to automotive power, performance, and design. Our collection features some of the most iconic concept cars from the future, showcasing speed, elegance, and innovation.</p>
</section>
<section id="gallery" class="section">
<h2>Gallery</h2>
<div class="gallery">
<img src="https://www.wsupercars.com/wallpapers-regular/Genesis/2025-Genesis-X-Gran-Coupe-and-Convertible-Concept-003-2000.jpg" alt="Genesis X Gran Coupe 1">
<img src="https://www.wsupercars.com/wallpapers-regular/Genesis/2025-Genesis-X-Gran-Coupe-and-Convertible-Concept-006-2000.jpg" alt="Genesis X Gran Coupe 2">
<img src="https://www.wsupercars.com/wallpapers-regular/Chevrolet/2025-Chevrolet-Corvette-UK-Concept-002-2000.jpg" alt="Chevrolet Corvette Concept">
</div>
</section>
<section id="contact" class="section">
<h2>Contact</h2>
<p>For collaborations or inquiries, email us at <a href="mailto:info@velocitygarage.com" style="color: #00ffff; text-decoration: none;">info@velocitygarage.com</a></p>
</section>
<footer>
<p>© 2025 Velocity Garage. All rights reserved.</p>
</footer>
</body>
</html>