-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
681 lines (423 loc) · 13.9 KB
/
index.html
File metadata and controls
681 lines (423 loc) · 13.9 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
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<noscript>
Your Browser is Incompatible </noscript>
<link rel="icon" href="img/d.ico" type="image/x-icon" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js"></script>
<script type="text/javascript" src = "calender.js">
</script>
<script type="text/javascript">
$(function(){
$("#date").on("mouseover",function(){
$("#cal").show();
});
$("#date").on("mouseout",function(){
$("#cal").hide();
});
});
</script>
<style type="text/css">
body {
height:100%;
padding-top: 56px;
font-family: Indie Flower, cursive;
}
th{
font-size: 12px;
}
td{
font-size: 11px;
}
</style>
<title>Dipesh - Freelancer From Nepal</title>
</head>
<body>
<nav class="navbar navbar-toggleable-md fixed-top bg-faded navbar-inverse bg-inverse">
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand" href="#">ND</a>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="nav navbar-nav mr-auto">
<li class="nav-item" >
<a class="nav-link" href="#" id = "time">
<script type="text/javascript">
setInterval(function(){
var now_date = new Date();
var hour = now_date.getHours();
if(hour>12){
hour-=12;
var type = "PM";
}
else{
hour = hour;
var type = "AM";
}
var min = now_date.getMinutes();
if(min<10){
min="0"+min;
}
if(hour<10){
hour = "0"+hour;
}
var sec = now_date.getSeconds();
document.getElementById("time").innerHTML= hour+` : `+min+` : `+sec+` `+type;
},100);
</script>
</a>
</li>
</ul>
<ul class="nav navbar-nav mx-auto">
<li class="nav-item">
<a class="nav-link" href="#" id = 'date'>
<script type="text/javascript">
var nd = new Date();
var mth = nd.getMonth();
var yr = nd.getFullYear();
var dayy = nd.getDay();
var day = dayToDay(dayy);
var mthh = moth(mth+1);
document.getElementById("date").innerHTML=yr+`-`+mthh+`-`+nd.getDate()+` `+day;
</script>
</a>
</li>
</ul>
<ul class="nav navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="#" id ="level">
<script>
function lg(level,charge){
if(charge ===true){
logo = "fa-bolt";
}
else{
if(level<=10){
logo = "fa-battery-0";
}
else if(level>10 && level<=25){
logo = "fa-battery-1";
}
else if(level>25 && level<=50){
logo = "fa-battery-2";
}
else if(level>50 && level<=75){
logo = "fa-battery-3";
}
else if (level>75 && level<=90){
logo = "fa-battery-three-quarters";
}
else{
logo = "fa-battery-full";
}
}
return logo;
}
navigator.getBattery().then(function(battery) {
if(battery.level==""){
level = "";
}
else{
level = battery.level;
charge = battery.charging;
logos = lg(level,charge);
}
document.querySelector('#level').innerHTML = Math.floor(level*100)+"% <i class ='fa "+logos+"''> </i>";
battery.onlevelchange = function(){
level = battery.level;
charge = battery.charging;
logos = lg(level,charge);
document.querySelector('#level').innerHTML = Math.floor(level*100)+"% <i class ='fa "+logos+"''> </i>";
}
battery.onchargingchange = function(){
level = battery.level;
charge = battery.charging;
logos = lg(level,charge);
document.querySelector('#level').innerHTML = Math.floor(level*100)+"% <i class ='fa "+logos+"''> </i>";
}
});
</script>
</a>
</li>
</ul>
</div>
</nav>
<script>
if(screen.width>480){
document.write(`<div id="cal" style="display: none;position:fixed;top:50px;left:45%;z-index:999;opacity:0.8;background-color:white;">`);
}
else{
document.write(`<div id="cal" style="display: none;position:fixed;top:220px;left:35%;z-index:999;opacity:0.8;background-color:white;">`);
}
</script>
<script>
show_calender('','');
</script>
</div>
<style>
.box{
position: absolute;
max-width : 120px;
max-height: 355px;
border:1px dotted green;
border-radius: 10px;
padding: 5px;
margin : 5px;
margin-left: 7px;
margin-top:25px;
opacity:0.8;
background-color: white;
z-index: 999;
}
.upper{
padding : 5px;
margin:0px;
margin-top: -10px;
background-color: green;
z-index: -1;
text-align: center;
color: white;
position : absolute;
height:88%;
width:100%;
}
.down{
padding : 5px;
margin:0px;
background-color: purple;
z-index: 1;
text-align: center;
color: white;
position: absolute;
bottom: 0px;
height:auto;
width:100%;
}
</style>
<div class="box" align="left">
<a href="" style="color:black;">
<i class ="fa fa-home fa-2x"> </i> Home
</a>
<hr/>
<a href="#" id = "about" style="color:black;">
<i class ="fa fa-smile-o fa-2x"> </i> About
</a>
<hr/>
<a href="#" id = "works" style="color:black;">
<i class ="fa fa-list fa-2x"> </i> Works
</a>
<hr/>
<a href="#" id = "contact" style="color:black;">
<i class ="fa fa-envelope-open-o fa-2x"> </i> Contact
</a>
<hr/>
<a href="#" id = "review" style="color:black;">
<i class ="fa fa-envelope-open-o fa-2x"> </i> Reviews
</a>
</div>
<div class="upper" id = "upper">
<h1>
Welcome !
</h1>
<br/>
<h4>
Thanks For Visiting Me ! </h4>
<br/>
<br/>
<h6> This is the official site of Dipesh Mishra (Noteme Dipesh) ! Just wait few seconds
and watch about me in this section </h6>
</div>
<div class="down" id="down">
Designed and developed by <a style="color:grey" href="http://mishradipesh.com.np">Noteme Dipesh</a>
</div>
<script>
$(function(){
$("#about").on("click",function(){
$("#aboutpage").modal("show");
});
$("#contact").on("click",function(){
$("#contactpage").modal("show");
});
$("#review").on("click",function(){
$("#reviewpage").modal("show");
});
$("#works").on("click",function(){
$("#workspage").modal("show");
});
pea= 1;
setInterval(function(){
p1 = "I am a Web Developer and Designer having 3+ years of experience in this field";
img1 = "wd.png";
p2 = "I have a strong Knowledge of Javascript ,jQuery , Nodejs , <br/> MongoDB , Angularjs ,Expressjs, HTML5 , Css";
img2 = "mean.png";
p3 = "I can make both dynamic and static web pages for you ";
img3 = "st.png";
p4 = "A single web page for all devices <br/> I use twitter's boootstrap to make your web page attractive and responsive !";
img4 = "res.png";
p5 = "I can develop both Android and Ios Native apps for you using facebook's React Native";
img5 = "rea.png";
p6 = "Thats all for now ! You can find my contact details on my contact page ";
img6 = "tnx.png";
pix ='p'+pea;
px = eval(pix);
imux = "img"+pea;
imx = eval(imux);
$("#upper").html(`<br/><br/> <h4>`+px+`</h4><br/>
<img src=img/`+imx+` height = 200 width = 350> `);
if(pea<6){
pea=pea+1;
}
else{
pea=1;
}
},7000);
});
</script>
<div class="modal fade" id="aboutpage" tabindex="-1" role="dialog" aria-labelledby="aboutLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="aboutLabel"><center style="color: black;"> About Me</center></h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" style="color: black;">
Hello ! I am Dipesh Mishra (Noteme Dipesh) from Nepal , a 19 year old programmer . I started my programming
since I was in my high school . I am coding since I was 15. I have 3+ years of coding in Javascript , Nodejs , jquery. I can make both
dynamic and static web pages for you and resposive at the same time . I use twitter's bootstrap to make tha design attractive
and responsive at the same time . I can also develop Native Android and ios apps for you using React Native . I love coding and every
single line of code motivates me to code further . I can also do your C and python assignments (Basic Level). I love learning new things and meeting new peoles . I not only develop softwares for clients but also develop a reation with them. You can have my contact details from my contact page .
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="contactpage" tabindex="-1" role="dialog" aria-labelledby="contactLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="contactLabel"><center style="color: black;"> Contact Me</center></h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" style="color: black;">
If you think I can do something benificial for you , or if you just wanna meet and have a cup of cofee with me , you can
contact me using the following details .
<br/><br/>
<i class = "fa fa-flag"> </i> Country : Nepal
<br/>
<i class = "fa fa-map-marker"> </i> City : Biratnagar , Bargachi
<br/>
<i class = "fa fa-phone"> </i> Phone : +977-98621-45232 Or +977-9810-484989
<br/>
<i class = "fa fa-email"> </i> Email : <a href=mailto:notemedps@gmail.com>notemedps@gmail.com</a>
<br/>
<br/>
<a href="http://fb.me/notemedps"><i class ="fa fa-facebook"></i> Facebook</a>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="reviewpage" tabindex="-1" role="dialog" aria-labelledby="reviewLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="reviewLabel"><center style="color: black;"> What Peoples Say About Me !</center></h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" style="color: black;">
<div align = "right">
<img src = "img/kd.jpg" class=" rounded-circle" height="100px" width="100px" alt="Kiran Birendra Cricket">
<br/>
<i class="fa fa-quote-left"> </i>
Outstanding Work Done ! We really got more than what we paid !
<i class="fa fa-quote-right"> </i>
<br/>
<small> - Kiran Dewan (Team Manager at Birendra Cricket Team) </small>
</div>
<br/>
<br/>
<div align="left">
<img src = "img/sbn.jpg" class=" rounded-circle" height="100px" width="100px" alt="Sabin Modern Music">
<br/>
<i class="fa fa-quote-left"> </i>
We just remember Dipesh when we have any tech ralated works ! Just awesome !
<i class="fa fa-quote-right"> </i>
<br/>
<small> - Sabin Nepal (Managing Director at Modern Music Association)</small>
</div>
<br/>
<br/>
<div align="right">
<img src = "img/bbk.jpg" class=" rounded-circle" height="100px" width="100px" alt="Kiran Birendra Cricket">
<br/>
<i class="fa fa-quote-left"> </i>
It's always awesome to work with Dipesh. Love the way he codes and delivers products in allocated time .
<i class="fa fa-quote-right"> </i>
<br/>
<small> - Bibek Bhattarai (Founder and CEO at Connectwap) </small>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="workspage" tabindex="-1" role="dialog" aria-labelledby="worksLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="worksLabel"><center style="color: black;"> Projects Completed By Me</center></h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" style="color: black;">
<center>Here is a short list of works completed by me !</center>
<br/>
<br/>
Project Name : <a href ="#"> Birendra Cricket Team Website </a>
<br/>
Client Name : Kiran Dewan <br/>
Client's Rating : 5/5 <br/>
Client's Feedback : Excellent
<br/><br/>
Project Name : <a href ="#"> Photography Website </a>
<br/>
Client Name : Nikesh Bhattarai <br/>
Client's Rating : 4.9/5 <br/>
Client's Feedback : Awesome
<br/><br/>
Project Name : <a href ="#"> Modern Music Website </a>
<br/>
Client Name : Sabin Nepal <br/>
Client's Rating : 5/5 <br/>
Client's Feedback : Excellent
<br/>
<b> <center> and lots more ... </center></b>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</body>
</html>