-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
290 lines (266 loc) · 10.2 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
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Complete Bootstrap 4 Website Layout</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"> <!-- Bootstrap 4 -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <!-- Jquery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script> <!-- Popper -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script> <!-- Bootstrap.js -->
<script src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"></script> <!-- Font Awesome-->
<link href="style.css" rel="stylesheet">
<link rel="stylesheet" href="https://m.w3newbie.com/you-tube.css">
</head>
<body>
<!-- Navigation -->
<Nav class="navbar navbar-expand-md navbar-light bg-light sticky-top"> <!-- navbar-expand-md here md is break point in case of change from mobile to tablet-->
<div class="container-fluid"> <!-- ontainer-fluid takes up 100% screen width-->
<a class="navbar-brand" href="#"><img src="img/logo.png"></a> <!--navbar-brand for logo in navbar-->
<!--Adding a toggle button-->
<button class="navbar-toggler" type="button" data-toggle = "collapse" data-target = "#navbarResponsive">
<span class="navbar-toggler-icon"></span> <!--For 3 line icon-->
</button>
<div class="collapse navbar-collapse" id = navbarResponsive>
<ul class="navbar-nav ml-auto"> <!--ml-auto gonna push the list items in case of big screen to the ri8-->
<li class="nav-item active">
<a class = "nav-link" href="#">Home</a>
</li>
<li class="nav-item">
<a class = "nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class = "nav-link" href="#">Services</a>
</li>
<li class="nav-item">
<a class = "nav-link" href="#">Team</a>
</li>
<li class="nav-item">
<a class = "nav-link" href="#">Connect</a>
</li>
</ul>
</div>
</div>
</Nav>
<!--- Image Slider -->
<div id="slides" class="carousel slide" data-ride = "carousel"> <!--Without slide in class images wont slide-->
<ul class="carousel-indicators">
<li data-target = "#slides" data-slide-to="0" active></li>
<li data-target = "#slides" data-slide-to="1"></li>
<li data-target = "#slides" data-slide-to="2"></li>
</ul>
<div class="carousel-inner">
<div class="carousel-item active"><img class="d-block w-100" src="img/background.png">
<div class="carousel-caption">
<h1 class="display-2">HackerOne</h1>
<h3 >Bug Bounty For All Kinds</h3>
<button type="button" class="btn btn-outline-light btn-lg">View Demo</button>
<button type="button" class="btn btn-primary btn-lg">Get Started</button>
</div>
</div>
<div class="carousel-item"><img class="d-block w-100" src="img/background2.png"></div>
<div class="carousel-item"><img class="d-block w-100" src="img/background3.png"></div>
</div>
</div>
<!--- Jumbotron -->
<div class="container-fluid">
<div class="row jumbotron">
<div class="col-xs-12 col-sm-12 col-md-9 col-lg-9 col-xl-10"> <!--Accessing breakpoints-->
<p class="lead"> We hack everything you got and we tell you the flaws in your system that can cause you a fortune.
</p>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3 col-xl-2">
<a href=""><button type="btn" class="btn-lg btn btn-outline-secondary">Pen Test</button></a>
</div>
</div>
</div>
<!--- Welcome Section -->
<div class="container-fluid padding">
<div class="row welcome text-center">
<div class="col-12">
<h1 class="display-4">Built with ease</h1>
</div>
<hr> <!--horizontal rule / A horizontal line-->
<div class="col-12">
<p class="lead">Bootstrap is developed mobile first, a strategy in which we optimize code for mobile devices first and then scale up components as necessary using CSS media queries. To ensure proper rendering and touch zooming for all devices.</p>
</div>
</div>
</div>
<!--- Three Column Section -->
<div class="container-fluid">
<div class="row text-center padding">
<div class="col-xs-12 col-sm-6 col-md-4"> <!--adding breakpoints for diff screens-->
<i class="fas fa-code"></i> <!--Font Awesome Icons-->
<h3>HTML5</h3>
<p>Built with the latest version of Html, HTML5</p>
</div>
<div class="col-xs-12 col-sm-6 col-md-4"> <!--adding breakpoints for diff screens-->
<i class="fas fa-bold"></i> <!--Font Awesome Icons-->
<h3>BOOTSTRAP 4</h3>
<p>Built with the latest version of Bootstrap, BOOTSTRAP4</p>
</div>
<div class="col-xs-12 col-sm-6 col-md-4"> <!--adding breakpoints for diff screens-->
<i class="fab fa-css3"></i> <!--Font Awesome Icons-->
<h3>CSS 3</h3>
<p>Built with the latest version of CSS, CSS3</p>
</div>
</div>
<hr class="my-4">
</div>
<!--- Two Column Section -->
<div class="container-fluid padding">
<div class="row padding">
<div class="col-lg-6"> <!--Instead of col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-6 we can only add 1 which will act as break point-->
<h2>If you build it...</h2>
<p>This is the most basic form of Bootstrap: precompiled files for quick drop-in usage in nearly any web project.</p>
<p> We provide compiled CSS and JS (bootstrap.*), as well as compiled and minified CSS and JS (bootstrap.min.*). </p>
<p> source maps (bootstrap.*.map) are available for use with certain browsers’ developer tools. Bundled JS files (bootstrap.bundle.js and minified bootstrap.bundle.min.js) include Popper, but not jQuery.</p>
<a href=""> <button type="button" class="btn btn-primary btn-lg">Learn More</button> </a>
</div>
<div class="col-lg-6">
<img class="img-fluid" src="img/desk.png">
</div>
</div>
<hr class="my-4">
</div>
<!--- Fixed background -->
<figure>
<div class="fixed-wrap">
<div id="fixed">
</div>
</div>
</figure>
<!--- Emoji Section -->
<button class="fun" data-toggle = "collapse" data-target="#emoji">Click For fun </button>
<div id="emoji" class="collapse">
<div class="container-fluid padding">
<div class="row text-center">
<div class="col-sm-6 col-md-3">
<img class="gif img-fluid" src="img/gif/panda.gif">
</div>
<div class="col-sm-6 col-md-3">
<img class="gif img-fluid" src="img/gif/poo.gif">
</div>
<div class="col-sm-6 col-md-3">
<img class="gif img-fluid" src="img/gif/chicken.gif">
</div>
<div class="col-sm-6 col-md-3">
<img class="gif img-fluid" src="img/gif/unicorn.gif">
</div>
</div>
</div>
</div>
<!--- Meet the team -->
<div class="container-fluid padding">
<div class="row welcome text-center">
<div class="col-12">
<h1 class="display-4">Meet the Team</h1>
</div>
<hr> <!--Will style later on-->
</div>
</div>
<!--- Cards -->
<div class="container-fluid padding">
<div class="row padding">
<div class="col-md-4">
<div class="card">
<img class="card-img-top" src="img/team1.png">
<div class="card-body">
<h4 class="card-title">John Doe</h4>
<p class="card-text">John is an Internet entrepreneur with almost 20 plus year of experience and very polished skills. </p>
<a href="#" class="btn btn-outline-secondary">See Profile</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<img class="card-img-top" src="img/team2.png">
<div class="card-body">
<h4 class="card-title">Clarke Griffen</h4>
<p class="card-text">Clarke is a Wanheda with almost over 10 plus year of experience. Her speciality is killing it with kindness. </p>
<a href="#" class="btn btn-outline-secondary">See Profile</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<img class="card-img-top" src="img/team3.png">
<div class="card-body">
<h4 class="card-title">Patrick Jane</h4>
<p class="card-text">Jane is a mentalist and is working with CBI for almost 9 years. His speciality is catching without evidence. </p>
<a href="#" class="btn btn-outline-secondary">See Profile</a>
</div>
</div>
</div>
</div>
<hr class="my-4">
</div>
<!--- Two Column Section -->
<div class="container-fluid padding">
<div class="row padding">
<div class="col-lg-6"> <!--Instead of col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-6 we can only add 1 which will act as break point-->
<h2>Our Philosiphy</h2>
<p>This is the most basic form of Bootstrap: precompiled files for quick drop-in usage in nearly any web project.</p>
<p> source maps (bootstrap.*.map) are available for use with certain browsers’ developer tools. Bundled JS files (bootstrap.bundle.js and minified bootstrap.bundle.min.js) include Popper, but not jQuery.</p>
</div>
<div class="col-lg-6">
<img class="img-fluid" src="img/bootstrap2.png">
</div>
</div>
<hr class="my-4">
</div>
<!--- Connect -->
<div class="container-fluid padding">
<div class="row text-center padding">
<div class="col-12">
<h2>Connect</h2>
</div>
<div class="col-12 social padding">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-google-plus-g"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
</div>
</div>
</div>
<!--- Footer -->
<footer>
<div class="container-fluid padding">
<div class="row text-center">
<div class="col-md-4">
<img src="img/logosd.png">
<hr class="light">
<h5>About</h5>
<hr class="light">
<p> Blood Bank Management System enables different blood banks to manage their stocks
and donor and recievers to donate and recieve blood.</p>
</div>
<div class="col-md-4">
<hr class="light">
<h5>Contact Us</h5>
<hr class="light">
<p>123-456789-09</p>
<p>555 555 555</p>
<p>27th Avenue , Lahore</p>
</div>
<div class="col-md-4">
<hr class="light">
<h5>Connect</h5>
<hr class="light">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-google-plus-g"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
</div>
<div class="col-12">
<hr class="light-100">
<h5>©{new Date().getFullYear()} Blood Bank System | All Rights Reserved | Terms Of Service | Privacy
</h5>
</div>
</div>
</div>
</footer>
</body>
</html>