-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
137 lines (117 loc) · 5.96 KB
/
gallery.html
File metadata and controls
137 lines (117 loc) · 5.96 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
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
<!DOCTYPE html>
<html lan="en">
<head>
<title>B5</title>
<link rel = "stylesheet" type="text/css" href="style.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css"
rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6"
crossorigin="anonymous">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand text-capitalize" href="#">Bootstrap project</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-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 mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-capitalize" href="aboutUs.html">About us</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Services
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">Something else here</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link text-capitalize" href="gallery.html">gallery</a>
</li>
<li class="nav-item">
<a class="nav-link text-capitalize" href="contactUs.html">contact us</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div class="toast" role="alert" aria-live="assertive" aria-atomic="true">
<div class="toast-header">
<img src="..." class="rounded me-2" alt="...">
<strong class="me-auto">Bootstrap</strong>
<small>11 mins ago</small>
<button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
</div>
<div class="toast-body">
Hello, world! This is a toast message.
</div>
</div>
</div>
</div>
<section class="main_heading my-5 bg-light">
<div class ="text-center text-uppercase">
<h1 class="display-4">gallery</h1>
<hr class="w-25 mx-auto"/>
</div>
<div class="container">
<div class="row gy-2 gc-2px my-5">
<div class="col-sm-4 col-10 col-md-4 mx-auto">
<figure>
<img src="images\umbrella.jpg" alt="gallery" style="width: 100%;height: 100%;" class="img-fluid">
</figure>
</div>
<div class="col-md-4 col-10 col-xxl-4 mx-auto">
<figure>
<img src="images\Rain.jpg" alt="gallery" style="width: 100%;height: 100%;" class="img-fluid">
</figure>
</div>
<div class="col-md-4 col-10 col-xxl-4 mx-auto">
<figure>
<img src="images\lady.jpg" alt="gallery" style="width: 100%;height: 100%;" class="img-fluid">
</figure>
</div>
</div>
</div>
</section>
<section class="main_heading my-5 py-2 offer_style">
<div class="container-fluid">
<div class="row">
<div class="col-xxl-12 col-10 py-5 text-center">
<h1>Check other Activities</h1>
<p>The greatest glory in living lies not in never falling, but in rising every time we fall</p>
<button type="button" class="btn btn-outline-light" data-bs-toggle="modal" data-bs-target="#exampleModal">
Check More</button>
</div>
</div>
</div>
</section>
<footer class="bg-secondary text-center text-white">
<p>©Copyright Raghavendra-Kesari</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.1/dist/umd/popper.min.js"
integrity="sha384-SR1sx49pcuLnqZUnnPwx6FCym0wLsk5JZuNx2bPPENzswTNFaQU1RDvt3wT4gWFG" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.min.js"
integrity="sha384-j0CNLUeiqtyaRmlzUHCPZ+Gy5fQu0dQ6eZ/xAww941Ai1SxSY+0EQqNXNE6DZiVc" crossorigin="anonymous">
</script>
<script type="text/javascript">
var toastElList = [].slice.call(document.querySelectorAll('.toast'))
var toastList = toastElList.map(function (toastEl) {
return new bootstrap.Toast(toastEl, option)
})
toastElList[0].show();
</script>
</body>
</html>