-
Notifications
You must be signed in to change notification settings - Fork 0
/
op2.html
64 lines (61 loc) · 1.79 KB
/
op2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shubham's Links</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f9f9f9;
}
.sidebar {
height: 100%;
width: 250px;
position: fixed;
top: 0;
left: 0;
background-color: #333;
padding-top: 20px;
text-align: left;
}
.sidebar a {
display: block;
color: white;
padding: 15px;
text-decoration: none;
font-size: 1.2rem;
}
.sidebar a:hover {
background-color: #575757;
}
.content {
margin-left: 250px;
padding: 20px;
}
h1 {
font-size: 2.5rem;
color: #333;
margin-top: 0;
}
</style>
</head>
<body>
<div class="sidebar">
<a href="https://stackoverflow.com/users/5306039/shubham">Stack Overflow</a>
<a href="https://github.com/shubhamdp">GitHub</a>
<a href="https://twitter.com/_shubhamdp">Twitter or X</a>
<a href="https://www.goodreads.com/shubhamdp">Goodreads</a>
<a href="https://shubhamdp.wordpress.com/">WordPress Blogs</a>
<a href="https://medium.com/@shubhamdp">Medium</a>
<a href="https://www.instagram.com/_shubhamdp/">Instagram</a>
<a href="https://www.youtube.com/@shubhamdp">YouTube</a>
</div>
<div class="content">
<h1>Welcome to Shubham's Link Collection</h1>
<p>Explore my online presence using the links in the sidebar.</p>
</div>
</body>
</html>