-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathop1.html
108 lines (107 loc) · 3.39 KB
/
op1.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
96
97
98
99
100
101
102
103
104
105
106
107
108
<!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 {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
text-align: center;
padding: 50px;
}
h1 {
font-size: 2.5rem;
color: #333;
}
.link-card {
display: inline-block;
background-color: white;
border-radius: 10px;
padding: 20px;
margin: 15px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
text-align: left;
width: 250px;
transition: transform 0.3s ease;
}
.link-card:hover {
transform: scale(1.05);
}
.link-card a {
text-decoration: none;
color: #0073e6;
font-size: 1.2rem;
display: flex;
align-items: center;
}
.link-card a:hover {
color: #005bb5;
}
.link-card img {
margin-right: 10px;
width: 30px;
height: 30px;
}
.link-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
</style>
</head>
<body>
<h1>Connect with Shubham</h1>
<div class="link-container">
<div class="link-card">
<a href="https://stackoverflow.com/users/5306039/shubham">
<img src="https://image.flaticon.com/icons/svg/2111/2111628.svg" alt="Stack Overflow Icon">
Stack Overflow
</a>
</div>
<div class="link-card">
<a href="https://github.com/shubhamdp">
<img src="https://image.flaticon.com/icons/svg/733/733609.svg" alt="GitHub Icon">
GitHub
</a>
</div>
<div class="link-card">
<a href="https://twitter.com/_shubhamdp">
<img src="https://image.flaticon.com/icons/svg/733/733579.svg" alt="Twitter Icon">
Twitter or X
</a>
</div>
<div class="link-card">
<a href="https://www.goodreads.com/shubhamdp">
<img src="https://image.flaticon.com/icons/svg/733/733585.svg" alt="Goodreads Icon">
Goodreads
</a>
</div>
<div class="link-card">
<a href="https://shubhamdp.wordpress.com/">
<img src="https://image.flaticon.com/icons/svg/2111/2111698.svg" alt="WordPress Icon">
WordPress Blogs
</a>
</div>
<div class="link-card">
<a href="https://medium.com/@shubhamdp">
<img src="https://image.flaticon.com/icons/svg/2111/2111532.svg" alt="Medium Icon">
Medium
</a>
</div>
<div class="link-card">
<a href="https://www.instagram.com/_shubhamdp/">
<img src="https://image.flaticon.com/icons/svg/733/733558.svg" alt="Instagram Icon">
Instagram
</a>
</div>
<div class="link-card">
<a href="https://www.youtube.com/@shubhamdp">
<img src="https://image.flaticon.com/icons/svg/733/733646.svg" alt="YouTube Icon">
YouTube
</a>
</div>
</div>
</body>
</html>