-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (74 loc) · 1.79 KB
/
Copy pathindex.html
File metadata and controls
82 lines (74 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Car Haven - Home</title>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&family=Rubik:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
font-family: 'Rubik', sans-serif;
background-color: #FDF0D5;
color: #003049;
}
header {
background-color: #780000;
padding: 1rem 2rem;
color: #FDF0D5;
display: flex;
justify-content: space-between;
align-items: center;
}
nav a {
margin-left: 2rem;
text-decoration: none;
color: #FDF0D5;
font-weight: 700;
}
.hero {
text-align: center;
padding: 6rem 2rem;
background-color: #FDF0D5;
}
.hero h1 {
font-family: 'Playfair Display', serif;
font-size: 4rem;
margin-bottom: 1rem;
color: #780000;
}
.hero p {
font-size: 1.5rem;
font-weight: 500;
color: #003049;
}
footer {
text-align: center;
padding: 2rem;
background-color: #003049;
color: #FDF0D5;
font-size: 0.9rem;
}
</style>
</head>
<body>
<header>
<div style="display: flex; align-items: center;">
<img src="Car Haven Logo.png" alt="Car Haven Logo" style="height: 40px; margin-right: 10px;" />
<div style="font-size: 1.5rem; font-weight: bold;">Car Haven</div>
</div>
<nav>
<a href="index.html">Home</a>
<a href="cars.html">Cars</a>
<a href="speed-tier.html">Speed Tier</a>
</nav>
</header>
<section class="hero">
<h1>Car Haven</h1>
<p>"All things super cars"</p>
</section>
<footer>
© 2025 Car Haven. Designed with speed & style.
</footer>
</body>
</html>