Skip to content

Commit 6045e55

Browse files
authored
Create op3.html
1 parent 281cfeb commit 6045e55

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

op3.html

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Shubham's Links</title>
7+
<style>
8+
body {
9+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
10+
background-color: #fff;
11+
text-align: center;
12+
padding: 50px;
13+
color: #333;
14+
}
15+
h1 {
16+
font-size: 2.5rem;
17+
margin-bottom: 30px;
18+
}
19+
.grid-container {
20+
display: grid;
21+
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
22+
gap: 20px;
23+
}
24+
.grid-item {
25+
background-color: #f4f4f4;
26+
padding: 20px;
27+
border-radius: 10px;
28+
transition: box-shadow 0.3s ease;
29+
}
30+
.grid-item:hover {
31+
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
32+
}
33+
.grid-item a {
34+
text-decoration: none;
35+
color: #0073e6;
36+
font-size: 1.2rem;
37+
}
38+
.grid-item a:hover {
39+
color: #005bb5;
40+
}
41+
</style>
42+
</head>
43+
<body>
44+
<h1>Shubham's Social Profiles</h1>
45+
46+
<div class="grid-container">
47+
<div class="grid-item"><a href="https://stackoverflow.com/users/5306039/shubham">Stack Overflow</a></div>
48+
<div class="grid-item"><a href="https://github.com/shubhamdp">GitHub</a></div>
49+
<div class="grid-item"><a href="https://twitter.com/_shubhamdp">Twitter or X</a></div>
50+
<div class="grid-item"><a href="https://www.goodreads.com/shubhamdp">Goodreads</a></div>
51+
<div class="grid-item"><a href="https://shubham

0 commit comments

Comments
 (0)