-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
540 lines (302 loc) · 14 KB
/
index.html
File metadata and controls
540 lines (302 loc) · 14 KB
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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prashant-Portfolio Website</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@300&family=Comforter+Brush&family=Dancing+Script:wght@600&family=Kaushan+Script&family=Montserrat:wght@300&family=Notable&family=Nunito+Sans:ital,wght@1,600&family=Oswald&family=Pacifico&family=Poor+Story&family=Poppins:wght@300;500&family=Sofia+Sans:wght@300&family=Ubuntu+Condensed&display=swap" rel="stylesheet">
<!-- aos animate on scroll -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="stylesheet" href="index.css">
<!-- icon -->
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
<!-- swiper -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css"
/>
<!-- favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
</head>
<body class="body " id="body">
<header class="header" id="header">
<nav class="nav">
<div class="logo">
<h2 class="logo-img">Praxant.</h2>
</div>
<ul>
<li><a href="#header" class="navlink">Home</a></li>
<li><a href="#about" class="navlink">About</a></li>
<li><a href="#service" class="navlink">Service</a></li>
<li><a href="#portfolio" class="navlink">Portfolio</a></li>
<li><a href="#testimonials" class="navlink">Testimonials</a></li>
<li><a href="#contact" class="navlink">Contact</a></li>
</ul>
<div class="nav-icons">
<ion-icon name="logo-facebook" class="nav-icon"></ion-icon>
<ion-icon name="logo-instagram" class="nav-icon"></ion-icon>
<ion-icon name="logo-twitter" class="nav-icon"></ion-icon>
</div>
<!-- navbar for small devive close and menu icon display is hidden-->
<div class="toggle-icons">
<ion-icon name="menu-outline" class="menu-nav toggle-icon" id="toggle-one"></ion-icon>
<ion-icon name="close-outline" class="close-nav toggle-icon"id="toggle-two"></ion-icon>
</div>
</nav>
<!-- navbar for mobile that will appear when we click menu icon -->
<div class="nav-slider nav-slide-show" id="nav-slider">
<ul class="nav-slide-ul">
<li><a href="#header" class="navlink-slide">Home</a></li>
<li><a href="#about" class="navlink-slide">About</a></li>
<li><a href="#service" class="navlink-slide">Service</a></li>
<li><a href="#portfolio" class="navlink-slide">Portfolio</a></li>
<li><a href="#testimonials" class="navlink-slide">Testimonials</a></li>
<li><a href="#contact" class="navlink-slide">Contact</a></li>
<li><p class="navlink-slide unique">Close</p></li>
</ul>
</div>
<div class="head">
<h1 class="h1">I Am Prashant</h1>
<h2 class="h2">A Passionate Web Developer</h2>
</div>
<div class="dark-area">
<a href="#header" class="a-top">
<ion-icon name="arrow-up-outline" id="dark-btn">
</ion-icon>
</a>
</div>
<!-- navbar ends -->
<!-- hro section -->
</header>
<section class="about-section section" id="about">
<div class="container grid grid-two">
<div class="left"data-aos="fade-right">
<p class="para-left">A creative agency specialized in web
<span>generated revenue </span></p>
</div>
<div class="right" data-aos="fade-left">
<h3 class="right-h3">
About Myself And My Team</h3>
<p class="para-right">With years of experience in the website design and development industry pride ourselves on creating unique, creative and quality designs that are developed upon the latest modern coding and developing techniques.</p>
</div>
</div>
</section>
<div class="about-offers ">
<div class="container grid grid-four">
<div class="offer "data-aos="fade-left">
<ion-icon name="flame-sharp" class="offer-icon" ></ion-icon>
<h4 class="offer-h4">Web Designing</h4>
</div>
<div class="offer"data-aos="fade-left">
<ion-icon name="code-sharp" class="offer-icon"></ion-icon>
<h4 class="offer-h4">Web Development</h4>
</div>
<div class="offer"data-aos="fade-left">
<ion-icon name="water-sharp" class="offer-icon"></ion-icon>
<h4 class="offer-h4">Logo Designing</h4>
</div>
<div class=" offer"data-aos="fade-left">
<ion-icon name="happy-sharp" class="offer-icon"></ion-icon>
<h4 class="offer-h4">UI/UX Designing</h4>
</div>
</div>
</div>
<!-- service section starts -->
<section class="section service" id="service" >
<div class="container grid grid-four">
<div class="service-box"data-aos="zoom-in">
<div class="service-data">
<p>01</p>
<h2>website design</h2>
<div class="hidden">
<p class="hide-para ">
Website design is about creating a website that is both visually appealing and easy to use
</p>
<a href="https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwiHuO6Tsf39AhUGxDgGHfoUDMQQFnoECEEQAQ&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FWeb_design&usg=AOvVaw0FRsNTSrpF_YbgnM1wPozu" class="service-btn">EXPLORE SERVICE</a>
</div>
<ion-icon name="browsers-outline" class="offer-icon">
</div>
</div>
<div class="service-box"data-aos="zoom-in">
<div class="service-data">
<p>02</p>
<h2>ui/ux designer</h2>
<div class="hidden">
<p class="hide-para ">
Good UI design can enhance the visual appeal of a product and make it easier to use
</p>
<a href="https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwj_8O7Csf39AhW98DgGHdFiAVoQFnoECA4QAQ&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FUser_experience_design&usg=AOvVaw1G-4QQeB9VBhLcrRx-0IHN" class="service-btn">EXPLORE SERVICE</a>
</div>
<ion-icon name="bookmarks-sharp" class="offer-icon">
</div>
</div>
<div class="service-box"data-aos="zoom-in">
<div class="service-data">
<p>01</p>
<h2>website design</h2>
<div class="hidden">
<p class="hide-para ">
Website design is about creating a website that is both visually appealing and easy to use
</p>
<a href="https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwiHuO6Tsf39AhUGxDgGHfoUDMQQFnoECEEQAQ&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FWeb_design&usg=AOvVaw0FRsNTSrpF_YbgnM1wPozu" class="service-btn">EXPLORE SERVICE</a>
</div>
<ion-icon name="browsers-outline" class="offer-icon">
</div>
</div>
<div class="service-box"data-aos="zoom-in">
<div class="service-data">
<p>01</p>
<h2>website design</h2>
<div class="hidden">
<p class="hide-para ">
Website design is about creating a website that is both visually appealing and easy to use
</p>
<a href="https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwiHuO6Tsf39AhUGxDgGHfoUDMQQFnoECEEQAQ&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FWeb_design&usg=AOvVaw0FRsNTSrpF_YbgnM1wPozu" class="service-btn">EXPLORE SERVICE</a>
</div>
<ion-icon name="browsers-outline" class="offer-icon">
</div>
</div>
</div>
</section>
<!-- service ends -->
<section class="portfolio section" id="portfolio" >
<div class="port-head" data-aos="fade-up">
<p class="para c-head">recent project</p>
<h3 class="h3">selected portfolio</h3>
</div>
<div class="container img-gallery-grid">
<div>
<a href="https://prashant48653c.github.io/new/"><img src="img1/bike.jpg" alt="images" class="img" data-aos="fade-left">
</a>
</div>
<div>
<a href="https://prashant48653c.github.io/filter-project/">
<img src="img1/boy.jpg" alt="images" class="img "data-aos="fade-left">
</a>
</div>
<div>
<img src="img1/cat.jpg" alt="images" class="img"data-aos="fade-left">
</div>
<div>
<img src="img1/car.jpg" alt="images" class="img"data-aos="fade-right">
</div>
<div>
<img src="img1/leaf.jpg" alt="images" class="img"data-aos="fade-right">
</div>
<div>
<img src="img1/man.jpg" alt="images" class="img"data-aos="fade-right">
</div>
</div>
</section>
<section class="freelance section">
<div class="free-line" >
<p>We are available for <span>FREELANCING</span></p>
</div>
</section>
<!-- testimonial -->
<section class="testimonial section" id="testimonials" data-aos="fade-right">
<div class="container">
<div class="t-heading">
<h3 class="c-head">What our user says!</h3>
<h2>Testimonial</h2>
</div>
<div class="swiper mySwiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<p>Prashant is an incredible web developer, and I feel so lucky to have him as a friend. His skills and expertise in the field are truly remarkable, and he never fails to impress me with his innovative ideas and creativity. </p>
<div class="t-inner">
<h5>Safal Poudel</h5>
<h6>UI Designer</h6>
</div>
</div>
<div class="swiper-slide">
<p>One of the things I appreciate most about Prashant is his dedication to his craft. He is always striving to learn more and stay up-to-date with the latest developments in the industry.</p>
<div class="t-inner">
<h5>Sailendra Shrestha</h5>
<h6>Creative Producer</h6>
</div>
</div>
<div class="swiper-slide">
<p>Prashant is also an incredibly kind and supportive friend. He is always willing to lend a listening ear or offer advice, and his positive attitude is infectious.</p>
<div class="t-inner">
<h5>Jasmin Rijal</h5>
<h6>Manga Director</h6>
</div>
</div>
<div class="swiper-slide">
<p>Prashant is an outstanding web developer, a true expert in his field, and an all-around great person. He is someone who inspires me to be a better friend and a better person every day.</p>
<div class="t-inner">
<h5>Avinash Belbase</h5>
<h6>Project Manager</h6>
</div>
</div>
<div class="swiper-slide">
<p>Prashant is a fantastic team player. He understands the importance of collaboration, and he is always willing to work with others to achieve a common goal</p>
<div class="t-inner">
<h5>Nirmal Ghimire</h5>
<h6>Graphic Designer</h6>
</div>
</div>
</div>
<!-- <div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div> -->
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<!-- conatct -->
<section class="contact section container " id="contact"data-aos="zoom-in">
<div class="contact-heading">
<h4 class="h4-contact c-head">Fill out the form and we'll be in touch soon!</h4>
<h2 class="h2-contact c-head">How we can help you?</h2>
</div>
<form class="grid grid-two form">
<input type="text" class="con-input" placeholder="Your Name*">
<input type="email" class="con-input"placeholder="Your Email Address">
<input type="text" class="con-input"placeholder="Your Number">
<textarea name="textarea" cols="30" rows="10" class="textarea" placeholder="Your Messege"></textarea>
</form>
<div class="formend">
<div class="check">
<input type="checkbox" class="checkbox">
<p class="para formend-text">I accept the terms & conditions and I understand that my data will be hold securely in accordance with the privacy policy.</p>
</div>
<input type="submit" class="btn" value="Send Messege">
</div>
</section>
<!-- footer section -->
<footer class="footer section" >
<div class="container">
<div class="f-links">
<li><a href="#about" class="f-link">About Us</a></li>
<li><a href="#service" class="f-link">Our Service</a></li>
<li><a href="external.html" class="f-link">Team</a></li>
<li><a href="#contact" class="f-link">Contact Us</a></li>
</div>
<div class="f-logo"><h2> Praxant.</h2></div>
<div class="copyline">
<p class="para lastline">© Portfolio is Proudly Designed from <a href="https://litho.themezaa.com/one-page-navigation/" target="_blank">Litho</a></p>
</div>
</div>
</footer>
<!-- swiper -->
<script src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.js"></script>
<script src="index.js"></script>
<!-- aos -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
offset: 0, // offset (in px) from the original trigger point
delay: 0, // values from 0 to 3000, with step 50ms
duration: 1000,
});
</script>
</body>
</html>