-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
259 lines (259 loc) · 16.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<!-- external css linked -->
<link rel="stylesheet" href="style.css">
<!-- icon cdn adden -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.3/font/bootstrap-icons.css">
<!-- favicon added -->
<link rel="icon" type="images/x-icon" href="images/favicon.ico">
<title>Home - Consult</title>
</head>
<body>
<!-- "navbar" start here -->
<div id="top-place" class="d-flex bg-info justify-content-between px-5 py-1">
<nav class="navbar navbar-expand-lg ps-2 navbar-light">
<div class="container-fluid">
<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 me-auto mb-2 mb-lg-0 fs-5 fw-normal">
<li class="nav-item pe-3">
<a class="nav-link active fw-bold" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item pe-3">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item pe-3">
<a class="nav-link" href="#">Pages</a>
</li>
<li class="nav-item pe-3">
<a class="nav-link" href="#">Portfolio</a>
</li>
<li class="nav-item pe-3">
<a class="nav-link" href="#">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contacts</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="p-2">
<a href="#"><img src="images/logo.png" alt="website logo"></a>
</div>
</div>
<!-- "navbar" end here -->
<!-- "slide" start here -->
<div class="h-75 position-relative d-none d-lg-inline">
<div id="carouselExampleDark" class="carousel carousel-dark slide" data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleDark" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleDark" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleDark" data-bs-slide-to="2" aria-label="Slide 3"></button>
<button type="button" data-bs-target="#carouselExampleDark" data-bs-slide-to="3" aria-label="Slide 4"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active" data-bs-interval="10000">
<img src="images/slider_img_01.jpg" class="d-block w-100" alt="...">
<div class="position-absolute slider-heading">
<h1>Positive<span class="text-info">Thinking</span> <br> Breeds Success</h1>
<button class="btn btn-info rounded-pill btn-outline-dark px-3 mt-2">Read More</button>
</div>
</div>
<div class="carousel-item" data-bs-interval="2000">
<img src="images/slider_img_02.jpg" class="d-block w-100" alt="...">
<div class="position-absolute slider-heading">
<h1>Positive<span class="text-info">Thinking</span> <br> Breeds Success</h1>
<button class="btn btn-info rounded-pill btn-outline-dark px-3 mt-2">Read More</button>
</div>
</div>
<div class="carousel-item">
<img src="images/slider_img_03.jpg" class="d-block w-100" alt="...">
<div class="position-absolute slider-heading">
<h1>Positive<span class="text-info">Thinking</span> <br> Breeds Success</h1>
<button class="btn btn-info rounded-pill btn-outline-dark px-3 mt-2">Read More</button>
</div>
</div>
<div class="carousel-item">
<img src="images/slider_img_04.jpg" class="d-block w-100" alt="...">
<div class="position-absolute slider-heading">
<h1>Positive<span class="text-info">Thinking</span> <br> Breeds Success</h1>
<button class="btn btn-info rounded-pill btn-outline-dark px-3 mt-2">Read More</button>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleDark" 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="#carouselExampleDark" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<!-- "slide" end here -->
<hr class="mt-2">
<!-- "after slide" contant start here -->
<div class="container">
<div class="d-flex justify-content-between py-5 row">
<div class="pe-4 col-10 m-auto col-lg-8 col-xl-6">
<h3 class="text-info fw-bold mb-3 px-1">We are always looking for specific approach to each cases.</h3>
<div class="we-are text-black-50 mb-4">Lorem ipsum dolor sit amet consectetur adipisicing elit. Accusamus saepe facere ducimus culpa beatae quidem eligendi! Deserunt, debitis. Dignissimos autem mollitia illo suscipit molestiae eligendi, rerum dolore officia harum laborum natus? Voluptatibus, vitae! Ut, laudantium.</div>
<div class="we-are text-black-50">Lorem ipsum dolor sit amet consectetur adipisicing elit. Accusamus saepe facere ducimus culpa beatae quidem eligendi! Deserunt, debitis. Dignissimos autem mollitia illo suscipit molestiae eligendi, rerum dolore officia harum laborum natus? Voluptatibus, vitae! Ut, laudantium.</div>
</div>
<div class="col-10 m-auto col-lg-4 col-xl-6">
<img class="img-fluid" src="images/we_are_alwayes.jpg" alt="we_are_alwayes">
</div>
</div>
<!-- "after slide" contant end here -->
<!-- "our service" start here -->
<div class="mt-5">
<h1 class="fw-bolder text-info text-center py-3">Our Services</h1>
<div class="d-flex justify-content-between row">
<div class="col-xl-4 text-center">
<img class="py-3 image-fluid" src="images/why_choos_us_01.jpg" alt="why_choos_us">
<h3 class="py-2">Consultancy Services</h3>
<p class="py-2 text-black-50">Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci autem in est, quam vero delectus culpa quis eum, nesciunt exercitationem deserunt deleniti!</p>
</div>
<div class="col-xl-4 text-center">
<img class="py-3 image-fluid" src="images/why_choos_us_02.jpg" alt="why_choos_us">
<h3 class="py-2">Consultancy Services</h3>
<p class="py-2 text-black-50">Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci autem in est, quam vero delectus culpa quis eum, nesciunt exercitationem deserunt deleniti!</p>
</div>
<div class="col-xl-4 text-center">
<img class="py-3 image-fluid" src="images/why_choos_us_03.jpg" alt="why_choos_us">
<h3 class="py-2">Consultancy Services</h3>
<p class="py-2 text-black-50">Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci autem in est, quam vero delectus culpa quis eum, nesciunt exercitationem deserunt deleniti!</p>
</div>
</div>
</div>
<!-- "our service" end here -->
<!-- "our work" start here -->
<div class="mt-4 mb-3">
<h1 class="fw-bolder text-info text-center py-2">Our Works</h1>
<div class="d-flex justify-content-between row py-4">
<div class="col-xl-4 text-center">
<div><img class="py-3 image-fluid" width="50px" src="images/bussiness.png" alt="Our Works"></div>
<h3 class="py-2">About Business</h3>
<p class="py-2 text-black-50">Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci autem in est, quam</p>
</div>
<div class="col-xl-4 text-center">
<div><img class="py-3 image-fluid" width="50px" src="images/analytics.png" alt="Our Works"></div>
<h3 class="py-2">Adnanced Analytics</h3>
<p class="py-2 text-black-50">Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci autem in est, quam</p>
</div>
<div class="col-xl-4 text-center">
<div><img class="py-3 image-fluid" width="50px" src="images/innovate.png" alt="Our Works"></div>
<h3 class="py-2">We Innovate</h3>
<p class="py-2 text-black-50">Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci autem in est, quam</p>
</div>
</div>
</div>
<!-- "our work" end here -->
<!-- "latest news" start here -->
<div class="mt-5">
<h1 class="fw-bolder text-info text-center py-3">Latest News</h1>
<div class="d-flex justify-content-between row">
<div class="col-xl-4 text-center">
<img class="py-3 image-fluid" src="images/blog_grid_img_01.jpg" alt="why_choos_us">
<br>
<div class="btn btn-info rounded-0 text-black fw-bold px-2 my-2 cursor-fix">25 june 2016</div>
<h3 class="py-2">Make your produvtive teams</h3>
<p class="py-2 text-black-50">Lorem ipsum dolor sit amet consectetur adipisicing elit. Laborum, laboriosam vel.</p>
</div>
<div class="col-xl-4 text-center">
<img class="py-3 image-fluid" src="images/blog_grid_img_02.jpg" alt="why_choos_us">
<br>
<div class="btn btn-info rounded-0 text-black fw-bold px-2 my-2 cursor-fix">25 june 2016</div>
<h3 class="py-2">Make your produvtive teams</h3>
<p class="py-2 text-black-50">Lorem ipsum dolor sit amet consectetur adipisicing elit. Laborum, laboriosam vel.</p>
</div>
<div class="col-xl-4 text-center">
<img class="py-3 image-fluid" src="images/blog_grid_img_03.jpg" alt="why_choos_us">
<br>
<div class="btn btn-info rounded-0 text-black fw-bold px-2 my-2 cursor-fix">25 june 2016</div>
<h3 class="py-2">Make your produvtive teams</h3>
<p class="py-2 text-black-50">Lorem ipsum dolor sit amet consectetur adipisicing elit. Laborum, laboriosam vel.</p>
</div>
</div>
</div>
<!-- "latest news" end here -->
</div>
<!-- "footer" start here -->
<footer class="bg-black bg-opacity-75 mt-5">
<div class="container m-auto row d-flex justify-content-between text-white-50 py-4">
<div class="col-12 text-center text-lg-start col-lg-3">
<div class="text-info fw-bold px-1 mb-4"><h3>Our Hearquarters</h3></div>
<div class="d-flex py-2 justify-content-center justify-content-lg-start">
<i class="bi pe-2 bi-telephone"></i>
<p>+088 212 386 5575</p>
</div>
<div class="d-flex py-2 justify-content-center justify-content-lg-start">
<i class="bi pe-2 bi-envelope"></i>
<p>helloxpart@gmail.com</p>
</div>
<div class="d-flex py-2 justify-content-center justify-content-lg-start">
<i class="bi pe-2 bi-geo-alt"></i>
<p>1010 Avenue of The MoonNewyork,NY 10018 US.</p>
</div>
</div>
<div class="col-12 text-center text-lg-start col-lg-3 mt-4 mt-lg-0">
<div class="text-info fw-bold px-1 mb-4"><h3>Company</h3></div>
<div class="py-1"><a class="text-decoration-none text-white-50" href="#">Consultancy Profile</a></div>
<div class="py-1"><a class="text-decoration-none text-white-50" href="#">About Us</a></div>
<div class="py-1"><a class="text-decoration-none text-white-50" href="#">Our Services</a></div>
<div class="py-1"><a class="text-decoration-none text-white-50" href="#">TeamMember</a></div>
<div class="py-1"><a class="text-decoration-none text-white-50" href="#">Latest News</a></div>
<div class="py-1"><a class="text-decoration-none text-white-50" href="#">FAQ's</a></div>
</div>
<div class="col-12 text-center text-lg-start col-lg-3 mt-4 mt-lg-0">
<div class="text-info fw-bold px-1 mb-4"><h3>Userful Links</h3></div>
<div class="py-1"><a class="text-decoration-none text-white-50" href="#">Creeate Account</a></div>
<div class="py-1"><a class="text-decoration-none text-white-50" href="#">Our process</a></div>
<div class="py-1"><a class="text-decoration-none text-white-50" href="#">People</a></div>
<div class="py-1"><a class="text-decoration-none text-white-50" href="#">Company Profilile</a></div>
<div class="py-1"><a class="text-decoration-none text-white-50" href="#">Client</a></div>
<div class="py-1"><a class="text-decoration-none text-white-50" href="#">Help Desk</a></div>
</div>
<div class="col-12 text-center text-lg-start col-lg-3 mt-4 mt-lg-0">
<div class="text-info fw-bold px-1 mb-4"><h3>Newsletter</h3></div>
<div class="px-1 mb-4"><p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Aut porro magnam eum cum voluptatibus temporibus.</p></div>
<div>
<form class="d-flex justify-content-center justify-content-lg-start py-2 py-lg-0" action="">
<input id="email-input" type="email" placeholder="Enter Your Email">
<button id="email-button" type="submit" class="text-info"><i class="bi bi-cursor-fill"></i></button>
</form>
</div>
<div class="d-flex justify-content-center mt-3">
<div><a href="#"><i class="bi bi-facebook px-3 text-info"></a></i></div>
<div><a href="#"><i class="bi bi-twitter px-3 text-info"></a></i></i></div>
<div><a href="#"><i class="bi bi-pinterest px-3 text-info"></a></i></div>
<div><a href="#"><i class="bi bi-youtube px-3 text-info"></a></i></div>
</div>
</div>
</div>
<hr>
<div class="py-2 position-relative">
<div class="text-center text-white-50">
<p>Copyright © 2022. All rights reserved. Design by <a href="#" class="text-decoration-none text-white-50">Someone</a></p>
</div>
<button id="send-to-top" class="position-absolute end-0 top-0 border-0 px-2 me-3 mb-3"><a
class="text-decoration-none text-info" href="#top-place"><i class="bi bi-arrow-up-circle-fill"></i></a></button>
</div>
</footer>
<!-- "footer" end here -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2" crossorigin="anonymous"></script>
</body>
</html>