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
72 lines (67 loc) · 3.34 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
68
69
70
71
72
<html>
<head>
<!-- Link the style sheet here -->
<link rel="stylesheet" href="/static/style.css">
<link rel="stylesheet" href="/static/bootstrap.min.css">
</head>
<div>
<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">
<!-- Insert header information here -->
<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; margin:auto">
<div class="card" style="width: 30%;" >
<img class="card-img-top" src="/static/person.png" alt="Card image">
<div class="card-body">
<p class="title">Jason Wang</p>
<p>CEO</p>
<p class="card-text">Jason Wang is a visionary leader with a proven track record in driving innovative strategies that deliver measurable growth and long-term success. With expertise in fostering collaboration and leading high-performing teams, he ensures excellence in achieving organizational goals.</p>
<p>[email protected]</p>
</div>
</div>
<div class="card" style="width: 30%;">
<img class="card-img-top" src="/static/person2.png" alt="Card image">
<div class="card-body">
<p class="title">Emily Grace</p>
<p>CFO</p>
<p class="card-text">"Emily Grace is a dynamic professional renowned for her ability to seamlessly combine creativity and precision in delivering innovative solutions. With a passion for excellence, she fosters collaborative environments that drive impactful outcomes.</p>
<p>[email protected]</p>
</div>
</div>
<div class="card" style="width: 30%;">
<img class="card-img-top" src="/static/person3.png" alt="Card image">
<div class="card-body">
<p class="title">Luciana Valeria</p>
<p>COO</p>
<p class="card-text">Luciana Valeria embodies elegance and resilience, drawing strength from her Latin roots and illuminating every space she enters. Her name signifies light and vitality, capturing the essence of a confident and inspiring individual.</p>
<p>[email protected]</p>
</div>
</div>
</div>
</div>
</div>
</div>
</html>