-
Notifications
You must be signed in to change notification settings - Fork 0
/
employees.html
206 lines (205 loc) · 7.1 KB
/
employees.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Document</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="./index.html">HotBeansWeb</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse justify-content-end"
id="navbarNav"
>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="./jobs.html">Jobs</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="./employees.html">Employees</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="./courses.html">Courses</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="./aboutus.html">About Us</a>
</li>
</ul>
</div>
</div>
</nav>
<div
id="carouselExampleIndicators"
class="carousel slide"
data-bs-ride="carousel"
>
<div class="carousel-indicators">
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="0"
class="active"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="1"
aria-label="Slide 2"
></button>
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="2"
aria-label="Slide 3"
></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="./C1.png" class="d-block w-100" alt="..." />
<div
class="w-100 h-100"
style="background: rgba(79, 79, 79, 0.5); color: black; position: absolute; top: 0%;"
>
<p class="text-center" style="font-size: 200%; margin-top: 27%;">
Our Employees
</p>
<p class="text-center" style="font-size: 150%;">
Come join us today and be apart of our wonderful team!
</p>
</div>
</div>
<div class="carousel-item">
<img src="./C2.png" class="d-block w-100" alt="..." />
<div
class="w-100 h-100"
style="background: rgba(79, 79, 79, 0.5); color: black; position: absolute; top: 0%;"
>
<p class="text-center" style="font-size: 200%; margin-top: 27%;">
Our Values
</p>
<p class="text-center" style="font-size: 150%;">
In all we do at HotBeans, we are guided by our commitment to equality and creativity.
</p>
</div>
</div>
<div class="carousel-item">
<img src="./C3.png" class="d-block w-100" alt="..." />
<div
class="w-100 h-100"
style="background: rgba(79, 79, 79, 0.5); color: black; position: absolute; top: 0%;"
>
<p class="text-center" style="font-size: 200%; margin-top: 27%;">
Inclusion and Diversity
</p>
<p class="text-center" style="font-size: 150%;">
At HotBeans, we truly believe that creating a diverse and cultural work environment is critical.
</p>
<div class="text-center">
<a href="./aboutus.html"class="btn btn-primary stretched-link"style="font-size: 90%">Read More</a>
</div>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide="prev"
>
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</body>
</html>
<div class="card-group">
<div class="card">
<img src="./roy.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Meet Roy</h5>
<p class="card-text">"I love working at HotBeans, theres always something new to do and my colleagues are great! HotBeans has opened so many pathways for me and my future."</p>
<p class="card-text"><small class="text-muted">Joined us in 2014</small></p>
</div>
</div>
<div class="card">
<img src="./danielle.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Meet Danielle</h5>
<p class="card-text">"I joined HotBeans when I was 20 and I am now 30, I guess that explains a lot."</p>
<p class="card-text"><small class="text-muted">Joined us in 2012</small></p>
</div>
</div>
<div class="card">
<img src="./jacy.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Meet Jacy</h5>
<p class="card-text">"I have met the most amazing people here at HotBeans and have had some amazing opportunities! HotBeans has truly changed my life in the greatest way."</p>
<p class="card-text"><small class="text-muted">Joined us in 2017</small></p>
</div>
</div>
</div>
</datalist>
<div class="card-body">
<blockquote class="blockquote mb-0">
</div>
</datalist>
<div class="card-body">
<blockquote class="blockquote mb-0">
</div>
</datalist>
<div class="card-body">
<blockquote class="blockquote mb-0">
</div>
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="./aboutus.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./jobs.html">Jobs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./application.html">Join Us</a>
</li>
<li class="nav-item">
<a class="nav-link disabled">HotBeansWeb</a>
</li>
</ul>
</datalist>
<div class="card-body">
<blockquote class="blockquote mb-0">
</div>