forked from jwalapc/Your-Portfolio-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarkandey
118 lines (110 loc) · 2.99 KB
/
markandey
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
<!documentTYPE html>
<style>
body{
margin: 0;
padding: 0;
background-size: cover;
background: url('bg.jpg');
}
.box{
width: 450px;
background: rgba(0, 0, 0, 0.4);
padding: 40px;
text-align: center;
margin: auto;
margin-top: 5%;
color: white;
font-family: 'Century Gothic',sans-serif;
}
.box-img{
border-radius: 50%;
width: 200px;
height: 200px;
}
.box h1{
font-size: 40px;
letter-spacing: 4px;
font-weight: 100;
}
.box h5{
font-size: 20px;
letter-spacing: 3px;
font-weight: 100;
}
.box p{
text-align: justify;
}
ul{
margin: 0;
padding: 0;
}
.box li{
display: inline-block;
margin: 6px;
list-style: none;
}
.box li a{
color: white;
text-decoration: none;
font-size: 60px;
transition: all ease-in-out 250ms;
}
.box li a:hover{
color: #b9b9b9;
}
p {
text-align: center;
font-size: 18px;
margin-top: 0px;
}
</style>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<title>Personal WebSite</title>
</head>
<body>
<div class="box">
<img src="marky.jpg" alt="" class="box-img">
<h1>Markandey Sharma</h1>
<h5>
Web Devloper - Web Designer</h5>
<p>
A web developer is a programmer who specializes in, or is specifically engaged in, the development of World Wide Web applications, or applications that are run over HTTP from a web server to a web browser.</p>
<ul>
<li><a href="https://twitter.com/Jwala49327368"><img src="twitter.png" width="50" height="50"></i></a></li>
<li><a href="https://www.instagram.com/jwala____/"><img src="instagram.png" width="50" height="50"></i></a></li>
<li><a href="https://www.facebook.com/jwala.chorasiya"><img src="facebook.png" width="50" height="50"></i></a></li>
<li><a href="https://github.com/jwalapc"><img src="github.png" width="50" height="50"></i></a></li>
<li><a href="https://www.linkedin.com/in/jwala-chaurasiya-34048b1b2"><img src="linkedin.png" width="50" height="50"></i></a></li>
</ul>
</div>
<p id="demo"></p>
<script>
// Set the date we're counting down to
var countDownDate = new Date("Dec 31, 2021 15:37:25").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
// Get today's date and time
var now = new Date().getTime();
// Find the distance between now and the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Output the result in an element with id="demo"
document.getElementById("demo").innerHTML = days + "d " + hours + "h "
+ minutes + "m " + seconds + "s ";
// If the count down is over, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("demo").innerHTML = "More to be come";
}
}, 1000);
</script>
</body>
</html>