-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
484 lines (419 loc) · 18.7 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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, maximum-scale=1">
<title></title>
<link rel="icon" href="favicon.png" type="image/png">
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="js/fancybox/jquery.fancybox.css" type="text/css" media="screen" />
<link href="css/style.css" rel="stylesheet" type="text/css">
<link href="css/font-awesome.css" rel="stylesheet" type="text/css">
<link href="css/animate.css" rel="stylesheet" type="text/css">
<!--[if lt IE 9]>
<script src="js/respond-1.1.0.min.js"></script>
<script src="js/html5shiv.js"></script>
<script src="js/html5element.js"></script>
<![endif]-->
</head>
<body>
<!--Hero_Section-->
<section id="hero_section" class="top_cont_outer">
<div class="hero_wrapper">
<div class="container">
<div class="hero_section">
<div class="row">
<div class="col-md-12">
<div class="top_left_cont intro zoomIn wow animated">
<h2>I AM SUMIT<br> <strong>BEGINNER OF WEB DEVELOPER...</strong></h2>
<p>
I am Sumit Gyawali, from Bardaghat Nawalparasi, with a passion of Web, Graphic and Web design. <br>
I specialize in standards compliant websites with a focus on usability. <br>
Enthusiastic about life, design and innovation. </p>
<div class="underline"></div>
<ul class="social_links">
<li><a href="https://www.facebook.com/sumit.gyawali.16/" class="fa fa-facebook"></a></li>
<li><a href="https://www.twitter.com/sumitgyawli45" class="fa fa-twitter"></a></li>
<li><a href="https://www.instagram.com/sumitgyawali48/" class="fa fa-instagram"></a></li>
<li><a href="https://www.linkedin.com/in/sumit-gyawali-793081164" class="fa fa-linkedin"></a></li>
</ul> </div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Hero_Section-->
<!--Header_section-->
<header id="header_wrapper">
<div class="container">
<div class="header_box">
<!-- <div class="logo"><a href="#"><img src="img/logo.png" alt="logo"></a></div>-->
<nav class="navbar navbar-inverse" role="navigation">
<div class="navbar-header">
<button type="button" id="nav-toggle" class="navbar-toggle" data-toggle="collapse" data-target="#main-nav"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
</div>
<div id="main-nav" class="collapse navbar-collapse navStyle">
<ul class="nav navbar-nav" id="mainNav">
<li class="active"><a href="#hero_section" class="scroll-link">Home</a></li>
<li><a href="#aboutUs" class="scroll-link">About Me</a></li>
<li><a href="#service" class="scroll-link">Skills</a></li>
<li><a href="#Portfolio" class="scroll-link">Projects</a></li>
<li><a href="#clients" class="scroll-link">Experience</a></li>
<li><a href="#team" class="scroll-link">Testimonial</a></li>
<li><a href="#contact" class="scroll-link">Contact</a></li>
</ul>
</div>
</nav>
</div>
</div>
</header>
<!--Header_section-->
<section id="aboutUs"><!--Aboutus-->
<div class="inner_wrapper aboutUs-container fadeInLeft animated wow">
<div class="container">
<h2>Introduction</h2>
<h6>My name is Sumit Gyawali.I am a Student of Computer Science and Information Technology (BSC CSIT).</h6>
<div class="inner_section">
<div class="row">
<div class="col-lg-12 about-us">
<div class="row">
<div class="col-md-6"> <img class="img-responsive img-circle lt-box"" src="img/about1.jpg" height="500px" width="400px" align="left">
</div><!-- /.col-md-6 -->
<div class="col-md-6">
<h3>I Design Awesome Web Apps</h3>
</div><!-- /.col-md-6 -->
<a href="documents/SumitGyawaliCV.pdf">
<button type ="button"> <i class="fa fa-download"></i> Download Resume </button>
</a>
</div><!-- /.row -->
</div><!-- /.col-lg-12 -->
</div>
</div>
</div>
</div>
</section>
<!--Aboutus-->
<!--Service-->
<section id="service">
<div class="container">
<h2>Skills</h2>
<div class="service_wrapper">
<div class="row">
<div class="col-md-3">
<div class="service_icon delay-03s animated wow zoomIn"> <span><i class="fa fa-android"></i></span> </div>
<div class="service_block">
<h3 class="animated fadeInUp wow">Android</h3>
</div>
</div>
<div class="col-md-3">
<div class="service_icon icon2 delay-03s animated wow zoomIn"> <span><i class="fa fa-apple"></i></span> </div>
<div class="service_block">
<h3 class="animated fadeInUp wow">Apple IOS</h3>
</div>
</div>
<div class="col-md-3">
<div class="service_icon icon3 delay-03s animated wow zoomIn"> <span><i class="fa fa-html5"></i></span> </div>
<div class="service_block">
<h3 class="animated fadeInUp wow">Design</h3>
</div>
</div>
<div class="col-md-3">
<div class="service_icon icon3 delay-03s animated wow zoomIn"> <span><i class="fa fa-user"></i></span> </div>
<div class="service_block">
<h3 class="animated fadeInUp wow">Development</h3>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio -->
<section id="Portfolio" class="content">
<!-- Container -->
<div class="container portfolio_title">
<!-- Title -->
<div class="section-title">
<h2>Projects</h2>
</div>
<!--/Title -->
</div>
<!-- Container -->
<div class="portfolio-top"></div>
<!-- Portfolio Filters -->
<div class="portfolio">
<div id="filters" class="sixteen columns">
<ul class="clearfix">
<li><a id="all" href="#" data-filter="*" class="active">
<h5>All</h5>
</a></li>
<li><a class="" href="#" data-filter=".prototype">
<h5>Prototype</h5>
</a></li>
<li><a class="" href="#" data-filter=".design">
<h5>Design</h5>
</a></li>
<li><a class="" href="#" data-filter=".android">
<h5>Android</h5>
</a></li>
<li><a class="" href="#" data-filter=".appleIOS">
<h5>Apple IOS</h5>
</a></li>
<li><a class="" href="#" data-filter=".web">
<h5>Web App</h5>
</a></li>
</ul>
</div>
<h2> Inventory Management System </h2>
<li> I was engaged in building this System for the college project as the syllabus of CSIT. </li>
<li> The objective was to deals with different vendors providing different items from a Goddam System adding features like sales records, generating sales and inventory reports monthly or yearly based. </li>
<h2> Online News Portal System </h2>
<li> I have done this Web-based application in my final year project The primary objective is to replace the paper newspaper in the coming days, where people can read anytime online adding features like category, posts, page, and comments. </li>
<!--/Portfolio Filters -->
<!-- Portfolio Wrapper -->
<div class="isotope fadeInLeft animated wow grid" style="position: relative; overflow: hidden; height: 480px;" id="portfolio_wrapper">
<!-- Portfolio Item -->
<figure style="position: absolute; left: 0px; top: 0px; transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1); width: 337px; opacity: 1;" class="portfolio-item one-four appleIOS isotope-item effect-oscar">
<div class="portfolio_img">
<img src="img/portfolio_pic1.jpg" alt="Portfolio 1"> </div>
<figcaption>
<div>
<a href="img/portfolio_pic1.jpg" class="fancybox">
<h2>Warm <span>Oscar</span></h2>
<p>Oscar is a decent man. He used to clean porches with pleasure.</p>
</a>
</div>
</figcaption>
</figure>
<!--/Portfolio Item -->
<!-- Portfolio Item-->
<figure style="position: absolute; left: 0px; top: 0px; transform: translate3d(337px, 0px, 0px) scale3d(1, 1, 1); width: 337px; opacity: 1;" class="portfolio-item one-four design isotope-item effect-oscar">
<div class="portfolio_img"> <img src="img/portfolio_pic2.jpg" alt="Portfolio 1"> </div>
<figcaption>
<div>
<a href="img/portfolio_pic2.jpg" class="fancybox">
<h2>Warm <span>Oscar</span></h2>
<p>Oscar is a decent man. He used to clean porches with pleasure.</p>
</a>
</div>
</figcaption>
</figure>
<!--/Portfolio Item -->
<!-- Portfolio Item -->
<figure style="position: absolute; left: 0px; top: 0px; transform: translate3d(674px, 0px, 0px) scale3d(1, 1, 1); width: 337px; opacity: 1;" class="portfolio-item one-four design isotope-item effect-oscar">
<div class="portfolio_img"> <img src="img/portfolio_pic3.jpg" alt="Portfolio 1"> </div>
<figcaption>
<div>
<a href="img/portfolio_pic3.jpg" class="fancybox">
<h2>Warm <span>Oscar</span></h2>
<p>Oscar is a decent man. He used to clean porches with pleasure.</p>
</a>
</div>
</figcaption>
</figure>
<!--/Portfolio Item-->
<!-- Portfolio Item-->
<figure style="position: absolute; left: 0px; top: 0px; transform: translate3d(1011px, 0px, 0px) scale3d(1, 1, 1); width: 337px; opacity: 1;" class="portfolio-item one-four android prototype web isotope-item effect-oscar">
<div class="portfolio_img"> <img src="img/portfolio_pic4.jpg" alt="Portfolio 1"> </div>
<figcaption>
<div>
<a href="img/portfolio_pic4.jpg" class="fancybox">
<h2>Warm <span>Oscar</span></h2>
<p>Oscar is a decent man. He used to clean porches with pleasure.</p>
</a>
</div>
</figcaption>
</figure>
<!-- Portfolio Item -->
<!-- Portfolio Item -->
<figure style="position: absolute; left: 0px; top: 0px; transform: translate3d(0px, 240px, 0px) scale3d(1, 1, 1); width: 337px; opacity: 1;" class="portfolio-item one-four design isotope-item effect-oscar">
<div class="portfolio_img"> <img src="img/portfolio_pic5.jpg" alt="Portfolio 1"> </div>
<figcaption>
<div>
<a href="img/portfolio_pic5.jpg" class="fancybox">
<h2>Warm <span>Oscar</span></h2>
<p>Oscar is a decent man. He used to clean porches with pleasure.</p>
</a>
</div>
</figcaption>
</figure>
<!--/Portfolio Item -->
<!-- Portfolio Item -->
<figure style="position: absolute; left: 0px; top: 0px; transform: translate3d(337px, 240px, 0px) scale3d(1, 1, 1); width: 337px; opacity: 1;" class="portfolio-item one-four web isotope-item effect-oscar">
<div class="portfolio_img"> <img src="img/portfolio_pic6.jpg" alt="Portfolio 1"> </div>
<figcaption>
<div>
<a href="img/portfolio_pic6.jpg" class="fancybox">
<h2>Warm <span>Oscar</span></h2>
<p>Oscar is a decent man. He used to clean porches with pleasure.</p>
</a>
</div>
</figcaption>
</figure>
<!--/Portfolio Item -->
<!-- Portfolio Item -->
<figure style="position: absolute; left: 0px; top: 0px; transform: translate3d(674px, 240px, 0px) scale3d(1, 1, 1); width: 337px; opacity: 1;" class="portfolio-item one-four design web isotope-item effect-oscar">
<div class="portfolio_img"> <img src="img/portfolio_pic7.jpg" alt="Portfolio 1"> </div>
<figcaption>
<div>
<a href="img/portfolio_pic7.jpg" class="fancybox">
<h2>Warm <span>Oscar</span></h2>
<p>Oscar is a decent man. He used to clean porches with pleasure.</p>
</a>
</div>
</figcaption>
</figure>
<!--/Portfolio Item -->
<!-- Portfolio Item -->
<figure style="position: absolute; left: 0px; top: 0px; transform: translate3d(1011px, 240px, 0px) scale3d(1, 1, 1); width: 337px; opacity: 1;" class="portfolio-item one-four android isotope-item effect-oscar">
<div class="portfolio_img"> <img src="img/portfolio_pic8.jpg" alt="Portfolio 1"> </div>
<figcaption>
<div>
<a href="img/portfolio_pic8.jpg" class="fancybox">
<h2>Warm <span>Oscar</span></h2>
<p>Oscar is a decent man. He used to clean porches with pleasure.</p>
</a>
</div>
</figcaption>
</figure>
<!--/Portfolio Item -->
</div>
<!--/Portfolio Wrapper -->
</div>
<!--/Portfolio Filters -->
<div class="portfolio_btm"></div>
<div id="project_container">
<div class="clear"></div>
<div id="project_data"></div>
</div>
</section>
<!--/Portfolio -->
<section class="page_section" id="clients"><!--page_section-->
<h2>Experience</h2>
<p style="background-image: url('img/bgg.webp');">
<h1><span><center> INTERNSHIP </span></h1></center>
<li> isewa Pvt. Ltd / Kathmandu / September, 2019 - December, 2019. </li>
<li> Worked as a PHP Developer. </li>
<li> Build the Online news portal system using web technologies tools, databases, and Programming languages i.e. PHP. </li>
<h1><span><center> WORK EXPERIENCE </span></h1></center>
<li> Network Monitoring and Troubleshoot Support Websurfer Nepal Communication System Pvt. Ltd. / Dhumbarahi height, Kathmandu / December, 2020 - August, 2021. </li>
<li> Worked as a Network Troubleshoot in Consumer Support Department. </li>
<li> Solve the ticketing problems, adjust router settings, check optical signal, register mac in OLT, and do the configuration of OLT.</li>
</p>
<!--page_section-->
<div class="container">
</div>
</section>
<!--client_logos-->
<!--client_logos-->
<section class="page_section team" id="team"><!--main-section team-start-->
<div class="container">
<h2>Testimonial</h2>
<h6>Lorem ipsum dolor sit amet, consectetur adipiscing.</h6>
<div id="team" name="team">
<div class="container">
<div class="row centered">
<div class="col-md-3 centered"> <img class="img img-circle lt-box" src="img/team01.jpg" height="120px" width="120px" alt="">
<div class="rt-box"><h4><strong>Rosy Illue</strong></h4>
<p>Lorem ipsum dolor sit amet, consectetur Morbi sagittis, sem quisci ipsum gravida tortor.</p><br/>
</div>
</div>
<div class="col-md-3 centered"> <img class="img img-circle lt-box" src="img/team02.jpg" height="120px" width="120px" alt="">
<div class="rt-box"><h4><strong>Nissy Yukjk</strong></h4>
<p>Lorem ipsum dolor sit amet, consectetur Morbi sagittis, sem quisci ipsum gravida tortor.</p><br/>
</div>
</div>
<div class="col-md-3 centered"> <img class="img img-circle lt-box" src="img/team03.jpg" height="120px" width="120px" alt="">
<div class="rt-box"><h4><strong>Fsdf Efffl</strong></h4>
<p>Lorem ipsum dolor sit amet, consectetur Morbi sagittis, sem quisci ipsum gravida tortor.</p><br/>
</div>
</div>
<div class="col-md-3 centered"> <img class="img img-circle lt-box" src="img/team04.jpg" height="120px" width="120px" alt="">
<div class="rt-box"><h4><strong>Mnin Nulk</strong></h4>
<p>Lorem ipsum dolor sit amet, consectetur Morbi sagittis, sem quisci ipsum gravida tortor.</p><br/>
</div>
</div>
</div>
</div>
<!-- row -->
</div>
</div>
</section>
<!--/Team-->
<!--Footer-->
<footer class="footer_wrapper" id="contact">
<div class="container">
<section class="page_section contact" id="contact">
<div class="contact_section">
<h2>Get In Touch</h2>
</div>
<div class="row">
<div class="col-lg-4 wow fadeInLeft">
<div class="contact_info">
<div class="detail">
<h4>My Address</h4>
<p>Kathmandu,Nepal</p>
</div>
<div class="detail">
<h4>call me</h4>
<p> +977-9847111700</p>
</div>
<div class="detail">
<h4>Email me</h4>
<p>[email protected]</p>
</div>
</div>
<ul class="social_links">
<li><a href="https://www.facebook.com/sumit.gyawali.16/" class="fa fa-facebook"></a></li>
<li><a href="https://www.twitter.com/sumitgyawli45" class="fa fa-twitter"></a></li>
<li><a href="https://www.instagram.com/sumitgyawali48/" class="fa fa-instagram"></a></li>
<li><a href="https://www.linkedin.com/in/sumit-gyawali-793081164" class="fa fa-linkedin"></a></li>
</ul>
</div>
<div class="col-lg-8 wow fadeInLeft delay-06s">
<!--NOTE: Update your email Id in "contact_me.php" file in order to receive emails from your contact form-->
<form name="sentMessage" id="contactForm" novalidate>
<div class="control-group">
<div class="controls">
<input type="text" class="form-control"
placeholder="Full Name" id="name" required
data-validation-required-message="Please enter your name" />
<p class="help-block"></p>
</div>
</div>
<div class="control-group">
<div class="controls">
<input type="email" class="form-control" placeholder="Email"
id="email" required
data-validation-required-message="Please enter your email" />
</div>
</div>
<div class="control-group">
<div class="controls">
<textarea rows="10" cols="100" class="form-control"
placeholder="Message" id="message" required
data-validation-required-message="Please enter your message" minlength="5"
data-validation-minlength-message="Min 5 characters"
maxlength="999" style="resize:none"></textarea>
</div>
</div>
<div id="success"> </div> <!-- For success/fail messages -->
<button type="submit" class="btn btn-primary pull-right">Send</button><br />
</form>
</div>
</div>
</section>
</div>
</footer>
<div class="footer_bottom"><span>Copyright © 2022. The best <a href="https://webthemez.com/tag/free" target="_blank">Free Template</a> by WebThemez.com</span> </div>
</div>
</footer>
<a href = "header.html"></a>
<a href = "about me.html"></a>
<a href = "skills.html"></a>
<a href = "projects.html"></a
<a href = "experience.html"></a>
<a href ="testimonial.html"></a>
<a href = "contact.html"></a>
<a href = "footer.html"></a>
</html>