-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
372 lines (348 loc) · 19.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="theme-color" content="#9d4edd">
<meta name="Description" CONTENT="Portfolio website which includes about page , skills page and contact page with fully responsive design">
<meta name="google-site-verification" content="TNFBcApjqaRSArBtNuMVFZeB3RuD0YuH2ISRk_ZcjPM"/>
<meta property="og:title" content="Vijendra Kumawat" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="vijendra.tech"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio </title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<!--icon-->
<script src="https://kit.fontawesome.com/433888fe69.js" crossorigin="anonymous"></script>
<!-- favicon -->
<link rel="shortcut icon" href="image/favicon.jpg" type="image/x-icon">
<!-- custom css -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!----------===================Nav bar section===================Start--------------->
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarToggler"
aria-controls="navbarToggler" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand" href="#">portfolio</a>
<div class="collapse navbar-collapse " id="navbarToggler">
<ul class="navbar-nav me-auto mx-3 mb-2 mb-lg-0 ">
<li class="nav-item mx-2">
<a class="nav-link px-3 active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link px-3" href="skills.html">skills</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link px-3 " href="about.html">about</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link px-3" href="contact.html">contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!----------===================Nav bar section===================End--------------->
<!----------=================== Main section ===================Start--------------->
<main>
<section class="site-banner">
<div class="container site-title">
<div class="row">
<div
class="col-lg-6 col-md-6 col-12 col-xxl-6 d-flex justify-content-center align-items-center flex-column my-5">
<ul class="text-uppercase">
<li>
<h3>Hey </h3>
</li>
<li>
<h1>I am Vijendra</h1>
</li>
<li>
<h4>Web Developer</h4>
</li>
<li class="d-flex flex-row flex-wrap">
<a href ='mailto:[email protected]?body="Hello Vijendra !"&subject="Job Alert"' target="_blank">
<button type="button" class=" btn primary-btn text-uppercase">hire me</button>
</a>
<!-- <a href="https://drive.google.com/file/d/1gl7EzQdveBoqtA_ThL2pwk7vB07jyXSC/view?usp=sharing"
target="_blank"> -->
<a href="Vijendra.pdf" target="_blank" rel="noopener noreferrer">
<button type="button" class="btn secondary-btn text-uppercase">get Resume</button>
</a>
</li>
</ul>
</div>
<div class="col-lg-6 col-md-6 col-12 col-xxl-6 d-flex justify-content-center align-items-center">
<img src="image/banner-image.png" alt="banner-image" class="img-fluid">
</div>
</div>
</div>
</section>
</main>
<!----------=================== Main section ===================End--------------->
<!----------=================== About section ===================Start--------------->
<section class="about-area my-4 py-2">
<div class="container-fluid">
<div class="row">
<div class="col-lg-6 col-md-6 col-12 col-xxl-6 about ">
<img src="image/about-us.png" alt="About us" class="img-fluid">
</div>
<div class="col-lg-6 col-md-6 col-12 col-xxl-6 px-4">
<h2 class="text-uppercase pt-5">
<span>Let me</span>
<span>introduce</span>
<span>myself</span>
</h2>
<div class="paragraph px-2 py-4 w-85">
<p class="para">
Full Stack Web Developer and UI/UX Designer.
</p>
<p class="para">
I am a Full Stack Web Developer, familar to Frontend technologies HTML5, CSS3, Bootstrap5,
JavaScript,React.js and Backend have Spring Boot & basic Node.js Knowledge, with database MySQL and MongoDb.
</p>
</div>
<!-- Button trigger modal -->
<button type="button" class="btn primary-btn text-uppercase" data-bs-toggle="modal"
data-bs-target="#staticBackdrop" data-bs-toggle="tooltip" data-bs-placement="bottom"
title="Know More About Us">Resume <i class="fa fa-download">
</i></button>
</div>
</div>
</div>
</section>
<!-- Modal -->
<div class="modal fade" id="staticBackdrop" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1"
aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="staticBackdropLabel">Download Resume</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body d-flex justify-content-center">
<img src="image/Resume.jpeg" alt="Resume" height="400rem" width="300rem">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Cancel</button>
<a href="vijendra.pdf" download="vijendra">
<button type="button" class="btn btn-primary">Download</button>
</a>
</div>
</div>
</div>
</div>
<!----------=================== About section ===================End-------------->
<!-- ====================== Start Services Area ============================= -->
<section class="services-area py-3 my-3">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center services-title px-5">
<h1 class="text-uppercase py-3">Services Offers</h1>
<p class="para">
I am a Full Stack Web Developer and providing the following services, you get Awesome experience
with Projects.
</p>
</div>
</div>
<div class="container services-list">
<div class="row">
<div class="col-lg-3 col-md-6 col-12 col-xxl-3 d-flex justify-content-center">
<div class="services">
<div class="sevices-img text-center py-4">
<img src="image/s1.png" alt="Services-1">
</div>
<div class="card-body text-center">
<h5 class="card-title text-uppercase">Site Deployment</h5>
<p class="card-text text-secondary">
Site Deployment is done in very low budget for static sites.I am USing Githubpages, Heroku, Netlify for free hosting with custom Domain. We can buy a domian or get it free from Freenom,get.tech Sites.
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12 col-xxl-3 d-flex justify-content-center">
<div class="services">
<div class="sevices-img text-center py-4">
<img src="image/s2.png" alt="Services-2">
</div>
<div class="card-body text-center">
<h5 class="card-title text-uppercase">ux/ui desing</h5>
<p class="card-text text-secondary">
Have a basic Knowledge of Figma to create the design and also using Canva Pro.I am learning these
skills and provide these services as soon as i complete it.Thanks for yor Support.
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12 col-xxl-3 d-flex justify-content-center">
<div class="services">
<div class="sevices-img text-center py-4">
<img src="image/s3.png" alt="Services-3">
</div>
<div class="card-body text-center">
<h5 class="card-title text-uppercase">Frontend Developer</h5>
<p class="card-text text-secondary">
Web design encompasses skills cover Frontend technologies, am familiar to Html ,Css,
Bootstrap, JavaScript, React.I can create fully responsive Web design for Websites.
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12 col-xxl-3 d-flex justify-content-center">
<div class="services">
<div class="sevices-img text-center py-4">
<img src="image/s4.png" alt="Services-4">
</div>
<div class="card-body text-center">
<h5 class="card-title text-uppercase">Backend Developer</h5>
<p class="card-text text-secondary">
Backend is the part of site which helps to connect with database and give
funcationality to the site.I have bit Knowledge of Backend technologies like PHP and
Node.js .
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ====================== End Services Area ============================= -->
<!-- =============++++++======== Project Area ===========__++++++======== Start -->
<section class="project my-3 py-3">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center project-title">
<h1 class="text-uppercase py-3">Projects</h1>
<p class="para pb-2">
Projects made by me are listed here.
</p>
</div>
</div>
<!-- Control buttons -->
<div id="myBtnContainer">
<button class="btn-project active" onclick="filterSelection('all')"> Show all</button>
<button class="btn-project" onclick="filterSelection('javascript')"> Javascript</button>
<button class="btn-project" onclick="filterSelection('bootstrap')"> Bootstrap</button>
<!-- <button class="btn-project" onclick="filterSelection('php')"> PHP</button> -->
<button class="btn-project" onclick="filterSelection('React')"> React</button>
</div>
<!-- The filterable elements. Note that some have multiple class names (this can be used if they belong to multiple categories) -->
<div class="container-project gx-5 row">
<div class="filterDiv col-lg-4 col-md-6 col-12 col-xxl-4 React">
<div class="grid">
<figure class="effect-oscar">
<img src="image/Tutionpad.png" alt="Tutionpad" />
<figcaption>
<h2>Tutionpad Site</h2>
<p>Tutionpad is a Online Platform for Tution</p>
<a href="https://tutionpad.netlify.app/ " target="_blank">View more</a>
</figcaption>
</figure>
</div>
</div>
<div class="filterDiv col-lg-4 col-md-6 col-12 col-xxl-4 React">
<div class="grid">
<figure class="effect-oscar">
<img src="image/Hifi-news.png" alt="Tutionpad" />
<figcaption>
<h2>Hifi News</h2>
<p>We get Top Headlines according to our preference.</p>
<a href="" target="_blank">View more</a>
</figcaption>
</figure>
</div>
</div>
<div class="filterDiv col-lg-4 col-md-6 col-12 col-xxl-4 javascript">
<div class="grid">
<figure class="effect-oscar">
<img src="image/notes-app.png" alt="project image" />
<figcaption>
<h2>Notes Application</h2>
<p class="project-details">Notes Taking Application made with Pure HTML5, CSS3,
JavaScript.</p>
<a href="https://vijendra-21.github.io/Notes-Taking_Application/" target="_blank">View
more</a>
</figcaption>
</figure>
</div>
</div>
<div class="filterDiv col-lg-4 col-md-6 col-12 col-xxl-4 bootstrap">
<div class="grid">
<figure class="effect-oscar">
<img src="image/gatik.png" alt="project image" />
<figcaption>
<h3>Gatik Defence Academy</h3>
<p>Fully Responsive Defence Academy Site, Where any anone can register through google form.</p>
<a href="https://gatikdefenceacademy.in" target="_blank">View more</a>
</figcaption>
</figure>
</div>
</div>
<div class="filterDiv col-lg-4 col-md-6 col-12 col-xxl-4 javascript">
<div class="grid">
<figure class="effect-oscar">
<img src="image/analog-clock.png" alt="project image" />
<figcaption>
<h2>Analog Clock</h2>
<p>Analog Clock with Digital Clock inside it.</p>
<a href="https://vijendra-21.github.io/Analog_clock/" target="_blank">View more</a>
</figcaption>
</figure>
</div>
</div>
<div class="filterDiv col-lg-4 col-md-6 col-12 col-xxl-4 bootstrap">
<div class="grid">
<figure class="effect-oscar">
<img src="image/fantic.png" alt="project image" />
<figcaption>
<h2>Fantic Esports</h2>
<p>Fully Responsive Design of BGMI online game Tournaments Site.<br>
</p>
<a href="https://vijendra-21.github.io/Fantic-Esports/" target="_blank">View more</a>
</figcaption>
</figure>
</div>
</div>
</div>
</div>
</section>
<!-- =============++++++======== Project Area ===========__++++++======== End -->
<!-- ====================== Footer Section ============================= -->
<footer class="footer-area mt-5">
<div class="container">
<div class="">
<div class="site-logo text-center py-4">
<a href="#"><img src="image/vijendra.jpg" alt="logo"></a>
</div>
<div class="social text-center">
<h5 class="text-uppercase">contact me</h5>
<a href="https://github.com/Vijendra-21" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.instagram.com/kumawat_viju_21/" target="_blank"><i
class="fab fa-instagram"></i></a>
<a href="whatsapp://send?text=Hello !&phone=+919079391949" target="_blank"><i
class="fab fa-whatsapp"></i></a>
<a href="https://www.facebook.com/vijendrakumar.kumawat.1998/" target="_blank"><i
class="fab fa-facebook"></i></a>
<a href="http://www.linkedin.com/in/vijendra21" target="_blank"><i class="fab fa-linkedin"></i></a>
</div>
<div class="copyrights text-center">
<h6> Copyright ©2022 All rights reserved | Vijendra </h6>
</div>
</div>
</div>
</footer>
<!-- Bootstrap JavaScript: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
crossorigin="anonymous"></script>
<!--Custom Javascript file -->
<script src="script.js"></script>
</body>
</html>