-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (75 loc) · 2.05 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
background-image: linear-gradient(292deg, #962ad6, #eb8321);
}
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>Rupam's World</title>
</head>
<body>
<font size="4"></font>
<ul class="sidenav">
<li><a class="active" href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="about.html">About</a></li>
</ul>
<div class="content">
<h1>Welcome to Rupam's site / মোৰ ৱেবচাইটলৈ আপোনাক স্ৱাগতম ।</h1>
<p>I use this site to showcase my projects. / মই এই ৱেবচাইটটো নিজৰ পৰিযোজনাসমুহ প্ৰদৰ্শন কৰিবলৈ ৱ্য়বহাৰ কৰো ।</p>
<p>Although I'm not new to web development, I am still a beginner <mark>(script kiddie)</mark> on this topic.
<p>I'll be updating this site a lot both in terms of content and design. So please be <span style="background:red;"> <b>patient<b></span>.</p>
</div>
<p>Read My latest <a href="http://bit.do/pdfthumb">blog post here.</a></p>
</body>
</html>