-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
402 lines (376 loc) · 20.5 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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<!-- bootstrap css file -->
<link rel="stylesheet" href="./css/bootstrap.min.css">
<!-- font awesome file -->
<link rel="stylesheet" href="./css/all.min.css">
<!-- costom css file -->
<link rel="stylesheet" href="./css/style.css">
<!-- responsive css file -->
<link rel="stylesheet" href="./css/responsive.css">
</head>
<body>
<!-- ==================HEADER AREA=================== -->
<header class="header_area">
<div class="main-menu">
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand" href="#"><img src="./img/title.gif" alt="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">
<div class="mr-auto"></div>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<!-- =================================END OF HEADER================================== -->
<!-- ===============================START OF MAIN AREA========================= -->
<main class="site-main">
<!-- ================================START BANNER AREA====================== -->
<section class="site-banner">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-12 site-title">
<h3 class="title-text">Hey</h3>
<h1 class="title-text text-uppercase">I am Rajeen</h1>
<h4 class="title-text text-uppercase">Undergraduate student at IIT</h4>
<div class="site-buttons">
<div class="d-flex flex-row flex-wrap">
<button type="button" class="btn button primary-button mr-4 text-uppercase">hire
me</button>
<button type="button" class="btn button secondary-button text-uppercase">Get cv</button>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 banner-image">
<img src="./img/banner/BannerGIF.gif" alt="banner-img" class="img-fluid">
</div>
</div>
</div>
</section>
<!-- ================================END BANNER AREA====================== -->
<!-- ================================START ABOUT AREA============================ -->
<section class="about-area">
<div class="container-fluid">
<div class="row">
<div class="col-lg-6 col-md-12">
<div class="about-image">
<img src="./img/Aboutus2.png" alt="About us" class="img-fluid">
</div>
</div>
<div class="col-lg-6 col-md-12 about-title">
<h2 class="text-uppercase pt-5">
<span>Let me</span>
<span>introduce</span>
<span>myself</span>
</h2>
<div class="paragraph py-4 w-75">
<p class="para">
Welcome to my Portfolio. <br>
My name is Mohd. Rajeen and I'm a 3rd year undergraduate student in the department of
Electronics Engineering at IIT BHU. My portfolio is a representation of all that I have learned and accomplished as an Engineering
student. <br>
I enjoy designing websites and am looking for more opportunities to work in coding on a
freelance basis. <br>
Recently I have also worked on some interesting Deep Learning Projects and I am really
enthusiastic to work on more such projects based on Machine Learning,
Deep Learning and AI.
</p>
</div>
<button type="button" class="btn button primary-button text-uppercase">Download cv</button>
</div>
</div>
</div>
</section>
<!-- ================================END ABOUT AREA============================ -->
<!-- ===============================START SKILLS AREA===================================== -->
<section class="brand-area">
<div class="container-fluid">
<div class="row">
<div class="col-xl-6 col-lg-12 col-md-12">
<div class="first-row row">
<div class="col-lg-4 col-md-6 col-sm-6">
<div class="single-brand">
<img src="./img/brands/1.png" alt="Brand-1 ">
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6">
<div class="single-brand">
<img src="./img/brands/2.png" alt="Brand-2 ">
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6">
<div class="single-brand">
<img src="./img/brands/3.png" alt="Brand-3 ">
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6">
<div class="single-brand">
<img src="./img/brands/4.png" alt="Brand-4">
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6">
<div class="single-brand">
<img src="./img/brands/5.png" alt="Brand-5 ">
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6">
<div class="single-brand">
<img src="./img/brands/6.png" alt="Brand-6">
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6">
<div class="single-brand">
<img src="./img/brands/7.png" alt="Brand-7 ">
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6">
<div class="single-brand">
<img src="./img/brands/8.png" alt="Brand-8 ">
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6">
<div class="single-brand">
<img src="./img/brands/9.png" alt="Brand-9">
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-lg-12 col-md-12">
<div class="experience-area">
<div class="d-flex flex-row years-area">
<h2 class="p-3 years">My</h2>
<h2>
<span>Skills</span>
<span>and</span>
<span>Technologies</span>
</h2>
</div>
<div class="d-flex flex-row flex-wrap call-area">
<span><i class="fas fa-phone-alt fa-3x px-3"></i></span>
<div class="call-now">
<a href="#" class="text-uppercase h4 font-roboto">Call Now</a>
<span class="font-roboto py-2">(+91)-798-398-8756</span>
</div>
</div>
<div class="bg-panel"></div>
</div>
</div>
</div>
</div>
</section>
<!-- ===============================END SKILLS AREA===================================== -->
<!-- ==================================PROJECT AREA======================================== -->
<section class="project-area">
<div class="container">
<div class="project-title pb-5">
<h1 class="text-uppercase title-h1 title-first">My Projects & IDEAS</h1>
</div>
<!--
<div class="button-group">
<button type="button" class="active" id="btn1" data-filter="*">All</button>
<button type="button" data-filter=".popular">Popular</button>
<button type="button" data-filter=".latest">Latest</button>
<button type="button" data-filter=".following">Following</button>
<button type="button" data-filter=".upcoming">Upcoming</button>
</div> -->
<div class="row grid">
<div class="col-lg-4 col-md-6 col-sm-12 element-item latest">
<div class="our-project">
<div class="img">
<a class="test-popup-link" href="./img/portfolio/my pics/portfolio.jpg">
<img src="./img/portfolio/my pics/portfolio.jpg" alt="portfolio-1"
class="img-fluid">
</a>
</div>
<div class="title py-4">
<h4 class="text-uppercase">My portfolio website</h4>
<span class="text-secondary">Latest, Portfolio</span>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 element-item popular">
<div class="our-project">
<div class="img">
<a class="test-popup-link" href="./img/portfolio/my pics/RGB game.png">
<img src="./img/portfolio/my pics/RGB game.png" alt="portfolio-2" class="img-fluid">
</a>
</div>
<div class="title py-4">
<h4 class="text-uppercase">RGB color game</h4>
<span class="text-secondary">Popular, Portfolio</span>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 element-item popular">
<div class="our-project">
<div class="img">
<a class="test-popup-link" href="./img/portfolio/my pics/E commerce clone.png">
<img src="./img/portfolio/my pics/E commerce clone.png" alt="portfolio-3"
class="img-fluid">
</a>
</div>
<div class="title py-4">
<h4 class="text-uppercase">E-commerce Clone</h4>
<span class="text-secondary">Latest, Portfolio</span>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 element-item upcoming">
<div class="our-project">
<div class="img">
<a class="test-popup-link" href="./img/portfolio/my pics/robotic car.jpg">
<img src="./img/portfolio/my pics/robotic car.jpg" alt="portfolio-4"
class="img-fluid">
</a>
</div>
<div class="title py-4">
<h4 class="text-uppercase">Line Following Robotic Car</h4>
<span class="text-secondary">Following, Portfolio</span>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 element-item upcoming">
<div class="our-project">
<div class="img">
<a class="test-popup-link" href="./img/portfolio/my pics/traffic2.jpg">
<img src="./img/portfolio/my pics/traffic2.jpg" alt="portfolio-5" class="img-fluid">
</a>
</div>
<div class="title py-4">
<h4 class="text-uppercase">Traffic Sign Recognotion(Deep Learning) </h4>
<span class="text-secondary">Popular, Portfolio</span>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 element-item following">
<div class="our-project">
<div class="img">
<a class="test-popup-link" href="./img/portfolio/my pics/hindi.jpg">
<img src="./img/portfolio/my pics/hindi.jpg" alt="portfolio-6" class="img-fluid">
</a>
</div>
<div class="title py-4">
<h4 class="text-uppercase">Handwritten hindi text recognizer</h4>
<span class="text-secondary">Popular, Portfolio</span>
</div>
</div>
</div>
<div class="col-lg-12 project-title pt-5 pb-4 upcoming">
<h1 class="text-uppercase title-h1">Upcoming Projects</h1>
<br>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 element-item following">
<div class="our-project">
<div class="img">
<a class="test-popup-link" href="./img/portfolio/my pics/crypto.jpg">
<img src="./img/portfolio/my pics/crypto.jpg" alt="portfolio-7" class="img-fluid">
</a>
</div>
<div class="title py-4">
<h4 class="text-uppercase">Crypto Currency Tracker(using API)</h4>
<span class="text-secondary">Upcoming, Portfolio</span>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 element-item following">
<div class="our-project">
<div class="img">
<a class="test-popup-link" href="./img/portfolio/my pics/weather.jpg">
<img src="./img/portfolio/my pics/weather.jpg" alt="portfolio-8" class="img-fluid">
</a>
</div>
<div class="title py-4">
<h4 class="text-uppercase">Weather Web App</h4>
<span class="text-secondary">Upcoming, Portfolio</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- =================================END PROJECT AREA=========================== -->
<!-- ==================================SUBSCRIBE AREA=============================== -->
<section class="subscribe-us-area">
<div class="container subscribe">
<div class="row">
<div class="col-lg-12 text-center subscribe-title">
<h4 class="text-uppercase">Subscribe to get the latest Updates</h4>
<p class="para"></p>
</div>
</div>
<div class="d-sm-flex justify-content-center">
<form class="w-50">
<div class="row d-flex flex-row flex-wrap">
<div class="col input-textbox">
<input type="text" id="txtemail" class="form-control" placeholder="Email">
</div>
<div class="col">
<div class="btn-submit">
<button type="submit" class="btn btn-success float-right">Subscribe</button>
</div>
</div>
</div>
</form>
</div>
</div>
</section>
<!-- ==================================END SUBSCRIBE AREA==================================== -->
<!-- ==========================================FOOTER AREA=========================== -->
<footer class="footer-area">
<div class="container">
<div class="">
<div class="site-logo text-center py-4">
<a href="#"><img src="./img/title.gif" alt="logo"></a>
</div>
<div class="social text-center">
<h6 class="text-uppercase">Follow me</h6>
<a href="https://www.linkedin.com/in/mohd-rajeen-15ba03190/"><i class="fab fa-linkedin"></i></a>
<a href="https://www.facebook.com/rajeen.mohammad"><i class="fab fa-facebook"></i></a>
<a href="https://github.com/Rajeen-065"><i class="fab fa-github"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
</div>
<div class="copyrights text-center">
<p class="para">
Copyright ©2021 All rights reserved | This template is made with by
<a href="#"><span style="color: var(--primary-color);">MOHD. RAJEEN</span></a>
</p>
</div>
</div>
</div>
</footer>
<!-- ===========================================END FOOTER AREA============================= -->
</main>
<!-- ===================================END OF MAIN=============================== -->
<!-- Jquery js file -->
<script src="./js/jquery.3.4.1.js"></script>
<!-- Bootstrap JS file -->
<script src="./js/bootstrap.min.js"></script>
<!-- custom js file -->
<script src="./js/main.js"></script>
</body>
</html>