generated from ibm-developer-skills-network/coding-project-template
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathAbout.html
67 lines (64 loc) · 3.24 KB
/
About.html
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
<html>
<head>
<link rel="stylesheet" href="/static/style.css">
<link rel="stylesheet" href="/static/bootstrap.min.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light" style="background-color:darkturquoise; height: 1in;">
<div class="container-fluid">
<h2 style="padding-right: 5%;">Dealerships</h2>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" style="font-size: larger;" aria-current="page" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" style="font-size: larger;" href="/about">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" style="font-size: larger;" href="/contact">Contact Us</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="card" style="width: 80%; margin: auto; margin-top:5%;">
<div class="banner" name="about-header">
<h1>About Us</h1>
Welcome to Best Cars dealership, home to the best cars in North America. We deal in sale of domestic and imported cars at reasonable prices.
</div>
<div style="display: flex; flex-direction: row; justify-content: space-between; margin: auto;">
<div class="card" style="width: 30%;">
<img class="card-img-top" src="/static/person1.jpg" alt="Veloz">
<div class="card-body">
<p class="title" style="font-weight: bold; font-size: 24px;">Veloz</p>
<p style="font-weight: bold; font-size: 20px;">Veloz Motors</p>
<p class="card-text">Veloz Motors specializes in high-performance luxury cars.</p>
<p style="font-style: italic;">[email protected]</p>
</div>
</div>
<div class="card" style="width: 30%;">
<img class="card-img-top" src="/static/person2.jpg" alt="Aarav Vez">
<div class="card-body">
<p class="title" style="font-weight: bold; font-size: 24px;">Aarav Veer</p>
<p style="font-weight: bold; font-size: 20px;">🇮🇳 Aarav Automotives</p>
<p class="card-text">Aarav Automotives brings a curated range of reliable, budget-friendly cars with a focus on Indian roads, values, and vibrant lifestyles.</p>
<p style="font-style: italic;">[email protected]</p>
</div>
</div>
<div class="card" style="width: 30%;">
<img class="card-img-top" src="/static/person3.jpg" alt="Crimson Shaw">
<div class="card-body">
<p class="title" style="font-weight: bold; font-size: 24px;">Crimson Shaw</p>
<p style="font-weight: bold; font-size: 20px;">Crimson Drive Autohaus</p>
<p class="card-text">Crimson Drive offers a premium selection of rugged SUVs and powerful sedans, perfect for those who chase adventure with elegance.</p>
<p style="font-style: italic;">[email protected]</p>
</div>
</div>
</div>
</div>
</body>
</html>