-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
616 lines (579 loc) · 24.3 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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
<!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" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="style.css" />
<title>Website 1</title>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-transparent">
<div class="container">
<!-- Logo -->
<a class="navbar-brand fs-4" href="#">Internet Of Things(IOT)</a>
<!-- Toggle Btn -->
<button
class="navbar-toggler shadow-none border-0"
type="button"
data-bs-toggle="offcanvas"
data-bs-target="#offcanvasNavbar"
aria-controls="offcanvasNavbar"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<!-- SideBar -->
<div
class="sidebar offcanvas offcanvas-start"
tabindex="-1"
id="offcanvasNavbar"
aria-labelledby="offcanvasNavbarLabel"
>
<!-- Sidebar Header -->
<div class="offcanvas-header text-white border-bottom shadow-none">
<h5 class="offcanvas-title" id="offcanvasNavbarLabel">
Internet Of Things(IOT)
</h5>
<button
type="button"
class="btn-close btn-close-white"
data-bs-dismiss="offcanvas"
aria-label="Close"
></button>
<!-- Sidebar Body -->
</div>
<div class="offcanvas-body d-flex flex-column flex-lg-row p-4 p-lg-0">
<ul
class="navbar-nav justify-content-center align-items-center fs-5 flex-grow-1 pe-3"
>
<li class="nav-item mx-2">
<a class="nav-link active" aria-current="page" href="#home">Home</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="#services">Services</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="#teammembers">Team Members</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
<!-- Login / Signup -->
<div
class="d-flex flex-column flex-lg-row justify-content-center align-items-center gap-3"
>
<a href="#login" class="text-white" style="text-decoration:none">Login</a>
<a
href="#signup"
class="text-white text-decoration-none px-3 py-1 rounded-4"
style="background-color: #f94ca4"
>Sign Up</a
>
</div>
</div>
</div>
</div>
</nav>
<!-- Homepage -->
<section id="home"
class="container-2 d-flex flex-column w-100 vh-100 text-grey align-items-center justify-content-center"
>
<h2>Revolutionizing Connectivity: The Power of IoT</h2>
<p class="text-white fw-bolder font-monospace">
The Internet of Things (IoT) refers to a network of interconnected
physical devices that communicate and exchange data with each other over
the internet. These devices, often embedded with sensors, software, and
other technologies, range from everyday household items like smart
thermostats and wearable fitness trackers to complex industrial
machinery and smart city infrastructure. IoT enables these devices to
collect, share, and analyze data, leading to improved efficiency,
automation, and decision-making across various sectors. For instance,
IoT can help monitor environmental conditions in agriculture, manage
traffic patterns in urban areas, and optimize manufacturing processes in
factories. As IoT continues to evolve, it promises to transform the way
we live, work, and interact with the world around us.
</p>
</section>
<!-- About Us -->
<div id="about" class="container-3">
<h2 class="text-white">About Us</h2>
</div>
<div class="row-2">
<div class="card">
<div class="card-body">
<h4 class="card-title">Key Aspects of IOT</h4>
<pre class="card-text">
<b>1. Connectivity:</b> IoT devices connect via various
communication protocols (Wi-Fi, Bluetooth, Zigbee, etc.), enabling
them to share data with other devices and systems.
<b>2. Data Collection:</b> Sensors in IoT devices collect data,
which can be anything from temperature and humidity to user
behavior. This data is critical for analysis and decision-making.
<b>3. Automation and Control:</b> IoT allows for automation of
tasks. For example, smart thermostats can learn your schedule and
adjust temperatures accordingly, while smart lights can be
controlled remotely.
<b>4. Real-time Monitoring:</b> Businesses can monitor equipment and
systems in real time, leading to predictive maintenance, improved
efficiency, and reduced downtime.
<b>5. Enhanced User Experience:</b> IoT applications can provide
personalized experiences, such as smart assistants that adapt to
user preferences over time.
<b>6. Security and Privacy:</b> With increased connectivity comes
the need for robust security measures. Ensuring the privacy of users
and data protection is a significant challenge in the IoT landscape.
</pre>
<a href="#" class="btn btn-primary">More Info.</a>
</div>
<img
class="card-img-bottom"
src="about.jpg"
alt="Card image"
style="width: 100%"
/>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Applications of IoT</h4>
<pre class="card-text">
<b>1. Smart Homes:</b> Devices like smart thermostats, lights, and
security systems that can be controlled remotely.
<b>2. Wearables:</b> Fitness trackers and smartwatches
that monitor health metrics.
<b>3. Industrial IoT (IIoT):</b> Used in manufacturing for monitoring machinery,
improving efficiency, and predicting failures.
<b>4. Smart Cities:</b> Systems for traffic management,
waste management, and energy efficiency.
<b>5. Healthcare:</b> Remote patient monitoring and telemedicine applications.
</pre>
<a href="#" class="btn btn-primary">More Info.</a>
</div>
<img
class="card-img-bottom"
src="about2.png"
alt="Card image"
style="width: 100%"
/>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Future of IoT</h4>
<pre class="card-text">
<b>1. Increased Connectivity with 5G: </b> The rollout of 5G networks will enhance the connectivity of IoT devices,
providing faster data transmission, lower latency, and the ability to connect a larger number of devices simultaneously.
This will enable more complex applications and real-time data processing.
<b>2. Expansion of Edge Computing: </b> Edge computing will play a crucial role in processing data closer to where it is generated,
reducing the need for data to be sent to centralized servers. This will improve response times and bandwidth efficiency,
especially for time-sensitive applications.
<b>3. Enhanced Security Measures: </b> As IoT adoption grows, so will the focus on security. Advanced encryption methods,
robust authentication protocols, and continuous monitoring systems will be essential to safeguard against cyber threats
and ensure data privacy.
<b>4. Interoperability Standards: </b> The future will likely see the establishment of standardized protocols that allow
different IoT devices and platforms to communicate seamlessly. This will promote compatibility and ease of integration
across various ecosystems.
<b>5. AI and Machine Learning Integration: </b> Artificial intelligence (AI) and machine learning will increasingly be
integrated into IoT systems, enabling smarter analytics, predictive maintenance, and automated decision-making.
This will enhance the efficiency and effectiveness of IoT applications.
<b>6. Sustainability and Energy Efficiency: </b> IoT will contribute to sustainability efforts through smart energy
management systems, waste reduction technologies, and improved resource allocation. Smart cities and smart agriculture
will leverage IoT to optimize energy usage and reduce environmental impact.
</pre>
<a href="#" class="btn btn-primary">More Info.</a>
</div>
<img
class="card-img-bottom"
src="about3.jpg"
alt="Card image"
style="width: 100%"
/>
</div>
</div>
<!-- Our Team Members -->
<div id="teammembers" class="container-4">
<h2 class="text-white">Our Team Members</h2>
</div>
<div>
<div class="row">
<div class="card bg-black">
<img class="card-img-top" src="card.jpg" alt="Card image" />
<div class="card-body text-white">
<h4 class="card-title">Arora R</h4>
<h6 class="card-text">
Travel Website / NDC / GDS / OTA / IoT& BLE.
</h6>
<a href="#" class="btn btn-primary">See Profile</a>
</div>
</div>
<div class="card bg-black">
<img class="card-img-top" src="card2.jpg" alt="Card image" />
<div class="card-body text-white">
<h4 class="card-title">Mykhailo T.</h4>
<h6 class="card-text">Full stack IoT Expert | Mobile apps | BLE .</h6>
<a href="#" class="btn btn-primary">See Profile</a>
</div>
</div>
<div class="card bg-black">
<img class="card-img-top" src="card3.jpg" alt="Card image" />
<div class="card-body text-white">
<h4 class="card-title">Khrystyna S.</h4>
<h6 class="card-text">
IoT, mechanical, electrical & firmware engineering.
</h6>
<a href="#" class="btn btn-primary">See Profile</a>
</div>
</div>
</div>
</div>
<!-- Our Services -->
<div id="services" class="container-5">
<h2 class="text-white">Our Services</h2>
</div>
<div class="container-52">
<!-- Carousel -->
<div id="demo" class="carousel slide" data-bs-ride="carousel">
<!-- Indicators/dots -->
<div class="carousel-indicators">
<button
type="button"
data-bs-target="#demo"
data-bs-slide-to="0"
class="active"
></button>
<button
type="button"
data-bs-target="#demo"
data-bs-slide-to="1"
></button>
<button
type="button"
data-bs-target="#demo"
data-bs-slide-to="2"
></button>
<button
type="button"
data-bs-target="#demo"
data-bs-slide-to="3"
></button>
<button
type="button"
data-bs-target="#demo"
data-bs-slide-to="4"
></button>
<button
type="button"
data-bs-target="#demo"
data-bs-slide-to="5"
></button>
</div>
<!-- The slideshow/carousel -->
<div class="carousel-inner">
<div class="carousel-item active">
<img
src="service.jpg"
alt="IOT Device Management"
class="d-block"
style="opacity: 1;width:100%"
/>
<div class="carousel-caption">
<h3>IOT Device Management</h3>
<p>
Efficient IoT device management ensures seamless integration and
operation of connected devices. It involves tracking device
performance, firmware updates, and security protocols to
maintain optimal functionality and minimize downtime.
</p>
</div>
</div>
<div class="carousel-item">
<img
src="service2.jpg"
alt="Real-Time Data Analytics"
class="d-block"
style="opacity: 1; width: 100%"
/>
<div class="carousel-caption">
<h3>Real-Time Data Analytics</h3>
<p>
Real-time data analytics processes and interprets data from IoT
sensors instantaneously. This enables immediate decision-making
and insights, helping businesses respond quickly to changing
conditions and optimize operations.
</p>
</div>
</div>
<div class="carousel-item">
<img
src="service3.jpg"
alt=" Cloud-Based IoT Solutions"
class="d-block"
style="opacity: 1; width: 100%"
/>
<div class="carousel-caption">
<h3>Cloud-Based IoT Solutions</h3>
<p>
Cloud-based IoT solutions provide scalable storage and computing
resources for IoT applications. This flexibility allows
businesses to handle vast amounts of data and access their IoT
systems from anywhere, enhancing operational efficiency.
</p>
</div>
</div>
<div class="carousel-item">
<img
src="service4.jpg"
alt=" IoT Security Services"
class="d-block"
style="opacity: 1; width: 100%"
/>
<div class="carousel-caption">
<h3>IoT Security Services</h3>
<p>
IoT security services focus on protecting connected devices and
networks from cyber threats. They include encryption,
authentication, and intrusion detection systems to safeguard
data integrity and prevent unauthorized access.
</p>
</div>
</div>
<div class="carousel-item">
<img
src="service5.jpg"
alt="Predictive Maintenance"
class="d-block"
style="opacity: 1; width: 100%"
/>
<div class="carousel-caption">
<h3>Predictive Maintenance</h3>
<p>
Predictive maintenance leverages IoT data to forecast equipment
failures before they occur. By analyzing patterns and anomalies,
it helps businesses perform timely repairs and avoid costly
downtime, extending the lifespan of assets.
</p>
</div>
</div>
<div class="carousel-item">
<img
src="service6.jpg"
alt="Smart Home Automation"
class="d-block"
style="opacity: 1; width: 100%"
/>
<div class="carousel-caption">
<h3>Smart Home Automation</h3>
<p>
Smart home automation integrates IoT technologies to enhance
residential comfort and efficiency. It allows users to control
lighting, climate, security systems, and appliances remotely,
creating a more convenient and energy-efficient living
environment.
</p>
</div>
</div>
</div>
<!-- Left and right controls/icons -->
<button
class="carousel-control-prev"
type="button"
data-bs-target="#demo"
data-bs-slide="prev"
>
<span class="carousel-control-prev-icon"></span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#demo"
data-bs-slide="next"
>
<span class="carousel-control-next-icon"></span>
</button>
</div>
</div>
<!-- Contact form -->
<div class="container-6" id="contact">
<h2 class="text-white">Contact Us</h2>
</div>
<div class="container">
<div class="row single-form g-0">
<div class="col-sm-12 col-lg-6">
<div class="left">
<h2><span>Contact Us for</span> <br />More Details</h2>
</div>
</div>
<div class="col-sm-12 col-lg-6">
<div class="right">
<i class="fa fa-caret-left"></i>
<form>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label"
>Your Name</label
>
<input
type="text"
class="form-control"
id="exampleInputEmail1"
aria-describedby="emailHelp"
required
/>
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label"
>Email address</label
>
<input
type="email"
class="form-control"
id="exampleInputEmail1"
aria-describedby="emailHelp"
required
/>
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label"
>Message</label
>
<textarea
type="password"
class="form-control"
id="exampleInputPassword1"
required
></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="text-center text-white bg-dark">
<!-- Grid container -->
<div class="container-7">
<!-- Section: Links -->
<section class="text-center mt-5">
<!-- Grid row-->
<div class="row text-center pt-5">
<!-- Grid column -->
<div class="col-md-2">
<h6 class="text-uppercase font-weight-bold">
<a href="#!" class="text-white" style="text-decoration: none">Home</a>
</h6>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2">
<h6 class="text-uppercase font-weight-bold">
<a href="#!" class="text-white" style="text-decoration: none">About Us</a>
</h6>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2">
<h6 class="text-uppercase font-weight-bold">
<a href="#!" class="text-white" style="text-decoration: none">Services</a>
</h6>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2">
<h6 class="text-uppercase font-weight-bold">
<a href="#!" class="text-white" style="text-decoration: none">Team Members</a>
</h6>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2">
<h6 class="text-uppercase font-weight-bold">
<a href="#!" class="text-white" style="text-decoration: none">Contact Us</a>
</h6>
</div>
<!-- Grid column -->
</div>
<!-- Grid row-->
</section>
<!-- Section: Links -->
<hr class="my-5" />
<!-- Section: Text -->
<section class="text-center mb-5">
<div class="row">
<p>
The Internet of Things (IoT) refers to a network of
interconnected physical devices that communicate and exchange
data with each other over the internet. These devices, often
embedded with sensors, software, and other technologies, range
from everyday household items like smart thermostats and
wearable fitness trackers to complex industrial machinery and
smart city infrastructure. IoT enables these devices to collect,
share, and analyze data, leading to improved efficiency,
automation, and decision-making across various sectors. For
instance, IoT can help monitor environmental conditions in
agriculture, manage traffic patterns in urban areas, and
optimize manufacturing processes in factories. As IoT continues
to evolve, it promises to transform the way we live, work, and
interact with the world around us.
</p>
</div>
</section>
<!-- Section: Text -->
<!-- Section: Social -->
<section class="text-center mb-5">
<a href="" class="me-4" style="text-decoration: none">
<i class="fa-brands fa-facebook"></i>
</a>
<a href="" class="me-4" style="text-decoration: none">
<i class="fa-brands fa-twitter"></i>
</a>
<a href="" class="me-4" style="text-decoration: none">
<i class="fa-brands fa-google"></i>
</a>
<a href="" class="me-4" style="text-decoration: none">
<i class="fa-brands fa-instagram"></i>
</a>
<a href="" class="me-4" style="text-decoration: none">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="" class="me-4" style="text-decoration: none">
<i class="fa-brands fa-github"></i>
</a>
</section>
<!-- Section: Social -->
</div>
<!-- Grid container -->
<!-- Copyright -->
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2)">
© 2024 Copyright | All right Reserved
</div>
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2)">
Created with <span>♥</span> by Dawood M.Shoaib
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
<!-- End of .container -->
</body>
</html>