Skip to content

Commit

Permalink
Create op3.html
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamdp authored Aug 22, 2024
1 parent 281cfeb commit 6045e55
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions op3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<!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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #fff;
text-align: center;
padding: 50px;
color: #333;
}
h1 {
font-size: 2.5rem;
margin-bottom: 30px;
}
.grid-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 20px;
}
.grid-item {
background-color: #f4f4f4;
padding: 20px;
border-radius: 10px;
transition: box-shadow 0.3s ease;
}
.grid-item:hover {
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.grid-item a {
text-decoration: none;
color: #0073e6;
font-size: 1.2rem;
}
.grid-item a:hover {
color: #005bb5;
}
</style>
</head>
<body>
<h1>Shubham's Social Profiles</h1>

<div class="grid-container">
<div class="grid-item"><a href="https://stackoverflow.com/users/5306039/shubham">Stack Overflow</a></div>
<div class="grid-item"><a href="https://github.com/shubhamdp">GitHub</a></div>
<div class="grid-item"><a href="https://twitter.com/_shubhamdp">Twitter or X</a></div>
<div class="grid-item"><a href="https://www.goodreads.com/shubhamdp">Goodreads</a></div>
<div class="grid-item"><a href="https://shubham

0 comments on commit 6045e55

Please sign in to comment.