-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
263 lines (242 loc) · 14.1 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
<!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 Link-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- bootstrap icon -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="css/style.css">
<title>Bro Code</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="images/logo.jpg" alt="logo" height="50px"><span
style="font-size: 26px; margin-left: 10px; font-weight: 700;">Bro Code.</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 me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Vision</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="#">Web Devlopment</a></li>
<li><a class="dropdown-item" href="#">App Devlopment</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="#">SEO</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact Us</a>
</li>
</ul>
<form class="d-inline-flex">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-light" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<!-------------------- slider start ------------------->
<div id="carouselExampleCaptions" class="carousel slide carousel-fade" 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/slider1.jpg" class="d-block w-100" alt="..." height="600px">
<div class="carousel-caption d-none d-md-block">
</div>
</div>
<div class="carousel-item">
<img src="images/bussiness1.jpg" class="d-block w-100" height="600px" alt="...">
<div class="carousel-caption d-none d-md-block">
</div>
</div>
<div class="carousel-item">
<img src="images/carousel-1.jpg" class="d-block w-100" height="600px" alt="...">
<div class="carousel-caption d-none d-md-block">
</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>
<div class="container-fluid bg-dark">
<!-- tagline -->
<div class="row">
<div class="col-12 text-white">
<h4 class="text-center mt-5 mb-2">"Your Next-Gen Technology Partner
VISION<br> is an Outsourced Product Development<br> Company. We are team of talented <br>engineers
developing products with <br>latest Technology and having a <br> strong experience of more than 11
Years"</h4>
</div>
</div>
<!-- Features -->
<div class="row justify-content-evenly pt-3 pb-3">
<div class="col-md-3 text-center text-warning mt-5">
<h1><i class="bi bi-file-code-fill"></i></h1>
<h5>Build For Developers</h5>
<p>Strong developer communities are fundamental to a thriving software ecosystem. By uniting programmers
around a common subject, communities enable users to share ideas, progress software projects,
support each other and have fun.While developer communities typically form quite naturally, there
are ways to encourage one to arise around your project or API.</p>
</div>
<div class="col-md-3 text-center text-warning mt-5">
<h1><i class="bi bi-easel-fill"></i></h1>
<h5>Strategy For Developers</h5>
<p>Businesses need quality software. But the time constraint pulls them back from building a digital
product that will stun their users and generate revenue. However, several businesses have been able
to score both - quality software and lower time to market. This has been possible by putting various
software development strategies and software development practices. </p>
</div>
<div class="col-md-3 text-center text-warning mt-5">
<h1><i class="bi bi-calendar-range-fill"></i></h1>
<h5>Build For Developers</h5>
<p>Problem-solving and critical thinking are two important soft skills programmers should possess. One
of the top soft skills that engineers can bring to your software development team is critical
thinking.Rather than constantly nagging about the issues at work, software developers should have
the ability the analyze the issue, use logic, and solve problems.</p>
</div>
</div>
<!-- Container End -->
</div>
<!----------------- Growth -------------------->
<div class="container-fluid" style="background-color: black; color: aqua;">
<div class="row justify-content-evenly pt-3 pb-5">
<div class="col-md-5">
<img src="images/progress.png" class="img-fluid" alt="Growth">
</div>
<div class="col-md-5 pt-3">
<h5 class="mt-4">Website Development</h5>
<div class="progress">
<div class="progress-bar bg-success" role="progressbar" style="width: 80%" aria-valuenow="25"
aria-valuemin="0" aria-valuemax="100"></div>
</div>
<h5 class="mt-4">App Development</h5>
<div class="progress">
<div class="progress-bar bg-info" role="progressbar" style="width: 60%" aria-valuenow="50"
aria-valuemin="0" aria-valuemax="0"></div>
</div>
<h5 class="mt-4">Software Development</h5>
<div class="progress">
<div class="progress-bar bg-warning" role="progressbar" style="width: 75%" aria-valuenow="75"
aria-valuemin="0" aria-valuemax="100"></div>
</div>
<h5 class="mt-4">SEO</h5>
<div class="progress">
<div class="progress-bar bg-danger" role="progressbar" style="width: 95%" aria-valuenow="100"
aria-valuemin="0" aria-valuemax="100"></div>
</div>
<h5 class="mt-4">Digital Marketing</h5>
<div class="progress">
<div class="progress-bar bg-primary" role="progressbar" style="width: 80%" aria-valuenow="100"
aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<!----------------- Contact ---------------->
<div class="row justify-content-evenly pt-2 pb-5" style="background-color: rgb(26,29,32);">
<div class="col-md-5 mt-5">
<h3 class="mb-4">Contact Form</h3>
<form>
<div class="mb-3">
<label for="name" class="form-label">Full Name</label>
<input type="text" class="form-control" id="name">
</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">
<div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div>
</div>
<div class="mb-3">
<label for="exampleFormControlTextarea1" class="form-label">Message</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>
<button type="submit" class="btn btn-danger">Submit</button>
</form>
</div>
<div class="col-md-5 mt-5">
<h3 class="mb-4">Address</h3>
<p class="pb-2">553 4th Ave, Avocado Heights,<br>CA 91746, United States<br>
<i class="bi bi-telephone-outbound-fill"></i> : 917 772 6405
</p>
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d13225.32159997705!2d-118.0039684425094!3d34.03539487060954!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x80c2d6e84c3357f9%3A0xc6724673919516bf!2sAvenue%20Park!5e0!3m2!1sen!2sin!4v1689793122531!5m2!1sen!2sin"
style="width: 100%;" height="250" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
<!------------------ footer ----------------->
<div class="row justify-content-evenly pt-2 pb-5"
style="background-color: rgb(8, 8, 42); color: rgb(167, 248, 167);">
<div class="col-md-3 pt-4">
<h5 class="fw-bolder pb-2">Bro Code.</h5>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Maiores nulla deserunt optio! Atque harum minus praesentium molestias recusandae est soluta.ipsum dolor sit amet consectetur adipisicing elit.
minus.</p>
</div>
<div class="col-md-3 pt-4">
<h5 class="fw-bolder pb-2">Important Links</h5>
<p>
<a href="#" class="link-light text-decoration-none">Home</a><br>
<a href="#" class="link-light text-decoration-none">About Us</a><br>
<a href="#" class="link-light text-decoration-none">Contact Us</a><br>
<a href="#" class="link-light text-decoration-none">Our Team</a><br>
<a href="#" class="link-light text-decoration-none">Our Clients</a><br>
</p>
</div>
<div class="col-md-3 pt-4">
<h5 class="fw-bolder pb-2">Customer Care</h5>
<p class="pb-2">553 4th Ave,<br>Avocado Heights,<br>CA 91746, United States<br>
America.<br>
<i class="bi bi-telephone-outbound-fill"></i> : 917 772 6405
</p>
</div>
</div>
<div class="row align-content-center">
<div class="col-md-12 text-center p-2 ">
<p class="pt-2 text-white">Copyright © 2023 <span style="color: orange;">Shubham Sutar <i class="fa-solid fa-heart fa-beat-fade fa-lg"></i></span> All Right Reserved - Powered</p>
</div>
</div>
</div>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
</body>
</html>