-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (62 loc) · 1.43 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
<DOCTYPE html>
<html>
<head>
<style>
img{
border-radius:50%;
width:20%;
position: absolute;
left:40%;
top:30%;
}
#sec-1{
display:flex;
justify-content: flex-end;
background-color: grey;
height: 5%;
align-items:center;
}
#sec-1 div{
padding-top:1%;
padding-bottom:1%;
}
body{
background-color: #CED15C;
}
#para{
position:absolute;
bottom: 20%;
right:45%;
font-size: 150%;
}
#footer{
display: flex;
position: absolute;
bottom: 0%;
padding: 2%;
justify-content: space-between;
}
#contact{
font-size: 150%;
position: absolute;
bottom: 10%;
left: 3%;
}
</style>
</head>
<body>
<div id="sec-1">
<div><a href="#sec-1"><button type="button" style="height: 100%">Home</button></a></div>
<div><a href="about.html"><button type="button" style="height: 100%">About</button></a></div>
<div><a href="projects.html"><button type="button"style="height: 100%">Projects</button></a></div>
</div>
<div><img src="dp.png"></div>
<div id="para"><p>Kishlay Kumar</p></div>
<div id ="contact"> Contact me here</div>
<div id="footer">
<div style="padding: 5%"><a href="https://www.facebook.com/kishlay.raj.58152559">Facebook </a></div>
<div style="padding: 5%"><a href="http://instagram.com/__kishlay__/">Instagram</a></div>
<div style="padding: 5%"><a href="https://www.linkedin.com/in/kishlay-kumar-29b62119b">LinkedIn</a></div>
</div>
</body>
</html>