-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
99 lines (99 loc) · 5.4 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
<html>
<head>
<title>IISAC-Home</title>
<link rel ="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<style>
#para1{
font-style: italic;
font-weight: 600;
justify-content: right;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg bg-dark fixed-top">
<div class="container px-lg-5">
<a class="navbar-brand" href="#"><span class="text-white">IISAC</span><span class="text-warning">.</span></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 ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active text-black" aria-current="page" href="#" style="font-weight:400"><span class="text-white">HOME</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html" target="_blank" style="font-weight:400"><span class="text-white">ABOUT US</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="reviews.html" target="_blank" style="font-weight:400"><span class="text-white">REVIEWS</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html" target="_blank" style="font-weight:400"><span class="text-white">CONTACT</span></a>
</li>
</ul>
</div>
</div>
</nav>
<!--chap1-->
<section id="home" class="bg-cover chap1-section" style="background-image:url(images/back2.jpg);">
<div class="overlay"></div>
<div class="container text-red text-center">
<div class="row">
<div class="col-12">
<h3 class="display-3">Welcome To The </h3><h2 class="display-6"><a href="#" style="text-decoration: none; color: rgba(251, 251, 251, 0.46);font-family:'Courier New', Courier, monospace;">IISAC.COM</a></h2>
<h1 class="display-1">We Design Fully Responsive, Professional and<br>
Stunning Bootstrap Websites
</h1>
<p id="para1" class="display-4" style="font-size:large">We will help you to grow up your business<br>by creating your dream website.Our responsibility is bring the
latest technology and finest things for our clients.</p>
<a href="#" class="btn btn-main">Get Started</a>
</div>
</div>
</div>
</div>
</section>
<!--chap2-->
<section class="chap2" >
<div id="carouselExampleCaptions" class="carousel slide" data-bs-ride="carousel" >
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2" aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/premises.jpg" class="d-block w-100 h-75">
<div class="carousel-caption d-none d-md-block">
<h5>WORKING AREA</h5>
<p></p>
</div>
</div>
<div class="carousel-item">
<img src="images/img3.jpg" class="d-block w-100 h-75">
<div class="carousel-caption d-none d-md-block">
<h5>WITH FIELD EXPERTS</h5>
</div>
</div>
<div class="carousel-item">
<img src="images/field.jpg" class="d-block w-100 h-75">
<div class="carousel-caption d-none d-md-block">
<h5>BEST COOMUNICATION</h5>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</section>
</body>
</html>