-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
359 lines (348 loc) · 17 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<title>Hello, world!</title>
</head>
<body>
<nav class="navbar navbar-expand-lg text-uppercase">
<div class="container">
<a class="navbar-brand font-weight-bold" href="#">Logo</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link px-lg-4 rounded" href="#">Home </a>
</li>
<li class="nav-item">
<a class="nav-link px-lg-4 rounded" href="#">Features</a>
</li>
<li class="nav-item">
<a class="nav-link px-lg-4 rounded" href="#">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link px-lg-4 rounded" href="#">BLOG</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Main Section -->
<section class="main py-5">
<div class="container py-5">
<div class="row py-5">
<div class="col-lg-6 py-5 mr-auto">
<h3>
<small>Hellow , I'm</small><br />
Om tanmaya
</h3>
<h6 class="pt-3">PRO WEB-DESIGNER</h6>
<input type="button" value="My work" class="bt1 mt-5 mr-3" />
<input type="button" value="Hire Me" class="bt2 mt-5" />
</div>
</div>
</div>
</section>
<!-- About Section -->
<section class="about">
<div class="container">
<div class="row">
<div class="col-lg-5">
<img
src="https://dvyvvujm9h0uq.cloudfront.net/com/articles/1525891879-150444-oladimeji-odunsi-415606-unsplashjpg.jpg"
alt=""
class="img-fluid"
/>
</div>
<div class="col-lg-7 pt-3">
<h1>About Me</h1>
<p>WEB DESIGNER & GRAPHIC DESIGNER</p>
<p class="py-3">
I am <span class="font-weight-bold">Om tanmaya Pati</span> Lorem
Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text
ever It has survived not only five centuries, but also the leap
into electronic but also the leap into electronic typesetting,
remaining essentially unchanged. It was popularised in the 1960s
with the release of Letraset sheets containing
</p>
<div class="progress">
<div class="pro-value1">
<p>HTML / CSS <span text-white float-right>95%</span></p>
</div>
</div>
<div class="progress my-2">
<div class="pro-value2">
<p>PHP/MYSQL <span text-white float-right>70%</span></p>
</div>
</div>
<div class="progress my-2">
<div class="pro-value3">
<p>BOOTSTRAP <span text-white float-right>98%</span></p>
</div>
</div>
<div class="progress">
<div class="pro-value4">
<p>JAVASCRIPT <span text-white float-right>80%</span></p>
</div>
</div>
<div class="progress my-2">
<div class="pro-value5">
<p>JAVA <span text-white float-right>90%</span></p>
</div>
</div>
<!-- Button -->
<input type="button" class="btn1 mt-5" value="Download C.V" />
<input type="button" class="btn2 mt-5" value="Contact us" />
</div>
</div>
</div>
</section>
<!-- Services -->
<section class="services py-5">
<div class="container py-5">
<h1 class="text-center pb-5">Services</h1>
<div class="row">
<div class="col-lg-4 mb-3">
<div class="card text-center py-3">
<div class="card-body">
<div class="circle">
<svg xmlns="http://www.w3.org/2000/svg" width="68px" height="68px" fill="currentColor" class="bi bi-browser-chrome" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M16 8a8.001 8.001 0 0 1-7.022 7.94l1.902-7.098a2.995 2.995 0 0 0 .05-1.492A2.977 2.977 0 0 0 10.237 6h5.511A8 8 0 0 1 16 8ZM0 8a8 8 0 0 0 7.927 8l1.426-5.321a2.978 2.978 0 0 1-.723.255 2.979 2.979 0 0 1-1.743-.147 2.986 2.986 0 0 1-1.043-.7L.633 4.876A7.975 7.975 0 0 0 0 8Zm5.004-.167L1.108 3.936A8.003 8.003 0 0 1 15.418 5H8.066a2.979 2.979 0 0 0-1.252.243 2.987 2.987 0 0 0-1.81 2.59ZM8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"/>
</svg>
<span><i class="fas fa-dextop"></i></span>
</div>
<h4 class="font-weight-bold pb-2">Web Design</h4>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Nihil accusamus iste perferendis harum aperiam omnis, rerum
assumenda maiores impedit exercitationem reiciendis delectus
totam quasi ab mollitia sequi facilis doloremque amet!
</p>
</div>
</div>
</div>
<div class="col-lg-4 mb-3">
<div class="card text-center py-3">
<div class="card-body">
<div class="circle">
<svg xmlns="http://www.w3.org/2000/svg" width="68px" height="68px" fill="currentColor" class="bi bi-mouse-fill" viewBox="0 0 16 16">
<path d="M3 5a5 5 0 0 1 10 0v6a5 5 0 0 1-10 0V5zm5.5-1.5a.5.5 0 0 0-1 0v2a.5.5 0 0 0 1 0v-2z"/>
</svg>
<span><i class="fas fa-dextop"></i></span>
</div>
<h4 class="font-weight-bold pb-2">Fully Responsive</h4>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Nihil accusamus iste perferendis harum aperiam omnis, rerum
assumenda maiores impedit exercitationem reiciendis delectus
totam quasi ab mollitia sequi facilis doloremque amet!
</p>
</div>
</div>
</div>
<div class="col-lg-4 mb-3">
<div class="card text-center py-3">
<div class="card-body">
<div class="circle">
<svg xmlns="http://www.w3.org/2000/svg" width="68px" height="68px" fill="currentColor" class="bi bi-code-slash" viewBox="0 0 16 16">
<path d="M10.478 1.647a.5.5 0 1 0-.956-.294l-4 13a.5.5 0 0 0 .956.294l4-13zM4.854 4.146a.5.5 0 0 1 0 .708L1.707 8l3.147 3.146a.5.5 0 0 1-.708.708l-3.5-3.5a.5.5 0 0 1 0-.708l3.5-3.5a.5.5 0 0 1 .708 0zm6.292 0a.5.5 0 0 0 0 .708L14.293 8l-3.147 3.146a.5.5 0 0 0 .708.708l3.5-3.5a.5.5 0 0 0 0-.708l-3.5-3.5a.5.5 0 0 0-.708 0z"/>
</svg>
<span><i class="fas fa-dextop"></i></span>
</div>
<h4 class="font-weight-bold pb-2">DevlopmentS</h4>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Nihil accusamus iste perferendis harum aperiam omnis, rerum
assumenda maiores impedit exercitationem reiciendis delectus
totam quasi ab mollitia sequi facilis doloremque amet!
</p>
</div>
</div>
</div>
<div class="col-lg-4 mb-3">
<div class="card text-center py-3">
<div class="card-body">
<div class="circle">
<svg xmlns="http://www.w3.org/2000/svg" width="68px" height="68px" fill="currentColor" class="bi bi-emoji-sunglasses-fill" viewBox="0 0 16 16">
<path d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zM2.31 5.243A1 1 0 0 1 3.28 4H6a1 1 0 0 1 1 1v.116A4.22 4.22 0 0 1 8 5c.35 0 .69.04 1 .116V5a1 1 0 0 1 1-1h2.72a1 1 0 0 1 .97 1.243l-.311 1.242A2 2 0 0 1 11.439 8H11a2 2 0 0 1-1.994-1.839A2.99 2.99 0 0 0 8 6c-.393 0-.74.064-1.006.161A2 2 0 0 1 5 8h-.438a2 2 0 0 1-1.94-1.515L2.31 5.243zM4.969 9.75A3.498 3.498 0 0 0 8 11.5a3.498 3.498 0 0 0 3.032-1.75.5.5 0 1 1 .866.5A4.498 4.498 0 0 1 8 12.5a4.498 4.498 0 0 1-3.898-2.25.5.5 0 0 1 .866-.5z"/>
</svg> -->
<span><i class="fas fa-dextop"></i></span>
</div>
<h4 class="font-weight-bold pb-2">Creative Design</h4>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Nihil accusamus iste perferendis harum aperiam omnis, rerum
assumenda maiores impedit exercitationem reiciendis delectus
totam quasi ab mollitia sequi facilis doloremque amet!
</p>
</div>
</div>
</div>
<div class="col-lg-4 mb-3">
<div class="card text-center py-3">
<div class="card-body">
<div class="circle">
<svg xmlns="http://www.w3.org/2000/svg" width="68px" height="68px" fill="currentColor" class="bi bi-megaphone-fill" viewBox="0 0 16 16">
<path d="M13 2.5a1.5 1.5 0 0 1 3 0v11a1.5 1.5 0 0 1-3 0v-11zm-1 .724c-2.067.95-4.539 1.481-7 1.656v6.237a25.222 25.222 0 0 1 1.088.085c2.053.204 4.038.668 5.912 1.56V3.224zm-8 7.841V4.934c-.68.027-1.399.043-2.008.053A2.02 2.02 0 0 0 0 7v2c0 1.106.896 1.996 1.994 2.009a68.14 68.14 0 0 1 .496.008 64 64 0 0 1 1.51.048zm1.39 1.081c.285.021.569.047.85.078l.253 1.69a1 1 0 0 1-.983 1.187h-.548a1 1 0 0 1-.916-.599l-1.314-2.48a65.81 65.81 0 0 1 1.692.064c.327.017.65.037.966.06z"/>
</svg>
<span><i class="fas fa-dextop"></i></span>
</div>
<h4 class="font-weight-bold pb-2">Branding</h4>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Nihil accusamus iste perferendis harum aperiam omnis, rerum
assumenda maiores impedit exercitationem reiciendis delectus
totam quasi ab mollitia sequi facilis doloremque amet!
</p>
</div>
</div>
</div>
<div class="col-lg-4 mb-3">
<div class="card text-center py-3">
<div class="card-body">
<div class="circle">
<svg xmlns="http://www.w3.org/2000/svg" width="68px" height="68px" fill="currentColor" class="bi bi-camera-fill" viewBox="0 0 16 16">
<path d="M10.5 8.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0z"/>
<path d="M2 4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-1.172a2 2 0 0 1-1.414-.586l-.828-.828A2 2 0 0 0 9.172 2H6.828a2 2 0 0 0-1.414.586l-.828.828A2 2 0 0 1 3.172 4H2zm.5 2a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1zm9 2.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0z"/>
</svg>
<span><i class="fas fa-dextop"></i></span>
</div>
<h4 class="font-weight-bold pb-2">Retina ready</h4>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Nihil accusamus iste perferendis harum aperiam omnis, rerum
assumenda maiores impedit exercitationem reiciendis delectus
totam quasi ab mollitia sequi facilis doloremque amet!
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- protfolio -->
<section class="protfolio py-5">
<div class="container text-center py-5">
<h1 class="text-center pb-5"> Portfolio</h1>
<div class="control">
<ul>
<li class="button">ALL</li>
<li class="button">Brand</li>
<li class="button">Design</li>
<li class="button">Graphic</li>
</ul>
</div>
<div class="row ">
<div class="col-lg-4">
<div class="item">
<img src="https://images.pexels.com/photos/1037992/pexels-photo-1037992.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2" class="img-fluid"alt="">
<span><i>+</i></span>
</div>
</div>
<div class="col-lg-4">
<div class="item">
<img src="https://images.pexels.com/photos/10358923/pexels-photo-10358923.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2" class="img-fluid"alt="">
<span><i>+</i></span>
</div>
</div>
<div class="col-lg-4">
<div class="item">
<img src="https://images.pexels.com/photos/1558689/pexels-photo-1558689.jpeg?auto=compress&cs=tinysrgb&w=600" class="img-fluid"alt="">
<span><i>+</i></span>
</div>
</div>
<!-- -->
<div class="row pt-3">
<div class="col-lg-4">
<div class="item">
<img src="https://images.pexels.com/photos/66134/pexels-photo-66134.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2" class="img-fluid"alt="">
<span><i>+</i></span>
</div>
</div>
<div class="col-lg-4">
<div class="item">
<img src="https://images.pexels.com/photos/1714208/pexels-photo-1714208.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2" class="img-fluid"alt="">
<span><i>+</i></span>
</div>
</div>
<div class="col-lg-4">
<div class="item">
<img src="https://images.pexels.com/photos/123335/pexels-photo-123335.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2" class="img-fluid"alt="">
<span><i>+</i></span>
</div>
</div>
</div>
</div>
</section>
<div class="container">
<h2 class="text-center font-weight-bold">Contact-us</h2>
<!-- Form page -->
<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="[email protected]">
</div>
<select class="form-select my-4" aria-label="Default select example">
<option selected>Select Your Query</option>
<option value="1">Web-devlopment</option>
<option value="2">Tech stack</option>
<option value="3">Tecnology</option>
<option value="4">Others</option>
</select>
<div class="mb-3">
<label for="exampleFormControlTextarea1" class="form-label">Elaborate your Concern</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>
<div>
<h6>Are you a Member?<br>yes</h6> <input class="form-check-input mx-2 " type="checkbox" id="checkboxNoLabel" value="" aria-label="..." >
</div>
<div class="btn btn-primary my-4">Submit</div>
</div>
<!-- Footer -->
<footer class="container my-4">
<p class="float-end"><a href="#">Back to top</a></p>
<p>© 2021–2022 Company, Inc. · <a href="#">Privacy</a> · <a href="#">Terms</a></p>
</footer>
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: jQuery and Bootstrap Bundle (includes Popper) -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-Fy6S3B9q64WdZWQUiU+q4/2Lc9npb8tCaSX9FK7E8HnRr0Jz8D6OP9dO5Vg3Q9ct"
crossorigin="anonymous"
></script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<!--
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-+sLIOodYLS7CIrQpBjl+C7nPvqq+FbNUBDunl/OZv93DB7Ln/533i8e/mZXLi/P+" crossorigin="anonymous"></script>
-->
</body>
</html>