-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnav.php
More file actions
37 lines (36 loc) · 1.94 KB
/
nav.php
File metadata and controls
37 lines (36 loc) · 1.94 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
<!-- Start Navbar -->
<div class="col-lg-10">
<div id="header-carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active" style="height: 410px;">
<img class="img-fluid" style="max-width: 100%;" src="./images/carousel-1.jpg" alt="Image">
<div class="carousel-caption d-flex flex-column align-items-center justify-content-center">
<div class="p-3" style="max-width: 700px;">
<h4 class="text-light text-uppercase font-weight-medium mb-3">B1910192</h4>
<h3 class="display-4 text-white font-weight-semi-bold mb-4">Hà Ngọc Châu</h3>
</div>
</div>
</div>
<div class="carousel-item" style="height: 410px;">
<img class="img-fluid" style="max-width: 100%;" src="./images/carousel-2.jpg" alt="Image">
<div class="carousel-caption d-flex flex-column align-items-center justify-content-center">
<div class="p-3" style="max-width: 700px;">
<h4 class="text-light text-uppercase font-weight-medium mb-3">B1910325</h4>
<h3 class="display-4 text-white font-weight-semi-bold mb-4">Nguyễn Nhật Trường</h3>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#header-carousel" data-slide="prev">
<div class="btn btn-dark" style="width: 45px; height: 45px;">
<span class="carousel-control-prev-icon mb-n2"></span>
</div>
</a>
<a class="carousel-control-next" href="#header-carousel" data-slide="next">
<div class="btn btn-dark" style="width: 45px; height: 45px;">
<span class="carousel-control-next-icon mb-n2"></span>
</div>
</a>
</div>
</div>
<!-- End Navbar -->