-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (70 loc) · 2.76 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Birds</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<style>
.carousel-caption {
bottom: 20px;
}
.carousel-item img {
max-height: 500px;
object-fit: cover;
}
.page-header {
text-align: center;
margin-top: 30px;
margin-bottom: 30px;
}
</style>
</head>
<body>
<header class="page-header">
<h1>WILDLIFE BIRDS</h1>
<p>Explore a collection of beautiful images from NASA</p>
</header>
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="img1.jpg" class="d-block w-100" alt="First Slide">
<div class="carousel-caption d-none d-md-block">
<h5>SpoonBill</h5>
<p>The scarlet-feathered roseate SpoonBill</p>
</div>
</div>
<div class="carousel-item">
<img src="img2.jpg" class="d-block w-100" alt="Second Slide">
<div class="carousel-caption d-none d-md-block">
<h5>Black-necked stilt </h5>
<p>A black-necked stilt finds food in the shallow water at NASA's Kennedy Space Center in Florida</p>
</div>
</div>
<div class="carousel-item">
<img src="img3.jpg" class="d-block w-100" alt="Third Slide">
<div class="carousel-caption d-none d-md-block">
<h5>Osceola wild turkey</h5>
<p>At NASA’s Kennedy Space Center in Florida, a female Osceola wild turkey roams a grassy area near Launch Complex 39.</p>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>