-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
131 lines (121 loc) · 5.99 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
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
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link href="styles.css" rel="stylesheet">
<style>
/* Additional styles for center alignment */
.center-content {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
}
</style>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container">
<a class="navbar-brand" href="index.html">Success's Homepage</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="services.html">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="container center-content"> <!-- Added center-content class -->
<h1 class="my-5 text-center">About Us</h1>
<!-- Team Members Section -->
<!-- Team Members Section -->
<section id="team-members" class="mb-5">
<h2 class="mb-4 text-center">Our Team</h2>
<div class="row justify-content-center">
<div class="col-md-4">
<div class="card">
<img src="https://via.placeholder.com/150" class="card-img-top" alt="Team Member 1"> <!-- Placeholder image -->
<div class="card-body text-center">
<h5 class="card-title">John Cena</h5>
<p class="card-text">CEO</p>
</div>
</div>
</div>
<div class="col-md-4"> <!-- Example of another team member -->
<div class="card">
<img src="https://via.placeholder.com/150" class="card-img-top" alt="Team Member 2"> <!-- Placeholder image -->
<div class="card-body text-center">
<h5 class="card-title">Jane Doe</h5>
<p class="card-text">CTO</p>
</div>
</div>
</div>
</div>
</section>
<!-- Mission and Vision Section -->
<section id="mission-vision" class="mb-5">
<h2 class="mb-4 text-center">Mission & Vision</h2>
<p class="text-center">Our mission is to provide high-quality products/services that exceed our customers' expectations. Our vision is to become a leader in our industry by continuously innovating and delivering exceptional value to our customers.</p>
</section>
<!-- Achievements Section -->
<section id="achievements" class="mb-5">
<h2 class="mb-4 text-center">Our Achievements</h2>
<ul>
<li>Received "Best Customer Service" award in 2023</li>
<li>Reached 10,000 satisfied customers milestone</li>
</ul>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="mb-5">
<div class="container">
<h2 class="mb-4 text-center">What Our Customers Say</h2>
<div class="row">
<div class="col-md-6">
<div class="testimonial">
<blockquote class="blockquote">
<p class="mb-0">"Lorem ipsum dolor sit amet, consectetur adipiscing elit."</p>
<footer class="blockquote-footer text-center">John Smith</footer>
</blockquote>
</div>
</div>
<div class="col-md-6">
<div class="testimonial">
<blockquote class="blockquote">
<p class="mb-0">"Vivamus auctor fringilla velit, non varius ipsum posuere ut."</p>
<footer class="blockquote-footer text-center">Emily Johnson</footer>
</blockquote>
</div>
</div>
</div>
</div>
</section>
</div>
<footer class="bg-dark text-light py-4">
<div class="container text-center">
<p>© 2024 My Website. All rights reserved.</p>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>