-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (59 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>shubhamdp</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
text-align: center;
padding: 50px;
}
h1 {
color: #333;
font-size: 2.5rem;
margin-bottom: 30px;
}
.links {
display: inline-block;
text-align: left;
}
.links a {
display: block;
margin: 15px 0;
text-decoration: none;
font-size: 1.2rem;
color: #0073e6;
transition: color 0.3s ease;
}
.links a:hover {
color: #005bb5;
}
.stack-overflow {
text-align: center;
margin-bottom: 40px;
}
</style>
</head>
<body>
<h1>Link Tree</h1>
<div class="stack-overflow">
<a href="https://stackoverflow.com/users/5306039/shubham">
<img src="https://stackoverflow.com/users/flair/5306039.png?theme=clean"
width="208" height="58" alt="profile for Shubham at Stack Overflow"
title="profile for Shubham at Stack Overflow">
</a>
</div>
<div class="links">
<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>
</body>
</html>