-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
95 lines (82 loc) · 1.8 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
background:linear-gradient(45deg,navy,pink,crimson);
color:midnightblue;
}
.container{
font-size:50px;
color:firebrick;
border:10px solid #500000;
border-radius: 10px;
}
ul.sidenav {
list-style-type: none;
margin: 0;
padding: 0;
width: 25%;
background:dodgerblue;
position: fixed;
height: 100%;
overflow: auto;
}
ul.sidenav li a {
display: block;
color: #000;
padding: 8px 16px;
text-decoration: none;
}
ul.sidenav li a.active {
background-color: rgb(128, 23, 189);
color: white;
}
ul.sidenav li a:hover:not(.active) {
background-color: rgb(12, 71, 160);
color: white;
}
div.content {
margin-left: 25%;
padding: 1px 16px;
height: 1000px;
}
@media screen and (max-width: 900px) {
ul.sidenav {
width: 100%;
height: auto;
position: relative;
}
ul.sidenav li a {
float: left;
padding: 15px;
}
div.content {margin-left: 0;}
}
@media screen and (max-width: 400px) {
ul.sidenav li a {
text-align: center;
float: none;
}
}
</style>
<title>Contact Rupam</title>
</head>
<body>
<ul class="sidenav">
<li><a href="index.html">Home</a></li>
<li><a class="active" href="contact.html">Contact</a></li>
<li><a href="about.html">About</a></li>
</ul>
<div class="content">
<h1><u>Contact me on the following</u></h1>
<div class="container">
<p>Instagram: <a href="https://www.instagram.com/i.rupam">@i.rupam</a></p>
<p>Twitter: <a href="https://www.twitter.com/meRupz">@meRupz</a></p>
<p>GitHub: <a href="https://github.com/iRupam">@iRupam</a></p>
</div>
</div>
</body>
</html>