Skip to content

Swadesh profile #57

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@
- [Piyush](https://github.com/piyushkdas0611)
- [FabianCristancho](https://github.com/FabianCristancho)
- [Divya](https://github.com/deevya)
- [Swadesh](https://github.com/Swadeshit27)
Binary file added Swadesh/Profile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions Swadesh/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Card</title>
<link rel="stylesheet" href="style.css">
</head>
<body>

<div class="container">
<div class="card" data-tilt>
<img src="my photo.jpg" alt="Swadesh Pal's Photo">
<h2>Swadesh Pal</h2>
<p>Competitive programmer || FrontEnd Developer || IT Undergrad @JGEC</p>
<div class="links">
<a href="https://twitter.com/Swadesh_Pal27"><img src="https://img.icons8.com/color/344/twitter-circled--v1.png"></a>
<a href="https://github.com/Swadeshit27"><img src="https://img.icons8.com/color/344/github--v1.png"></a>
<a href="https://www.linkedin.com/in/swadesh-pal-204036228/"><img src="https://img.icons8.com/color/344/linkedin-circled--v5.png"></a>

</div>
<a href="mailto:sp2527@it.jgec.ac.in" class="btn">Contact me</a> <!-- add your Gmail id here -->
</div>
</div>

</body>
</html>
Binary file added Swadesh/my photo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions Swadesh/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Short-Profile-With-HTML-CSS for gtihub profile Swadesh Pal
![profile-ss](./Profile.png)
76 changes: 76 additions & 0 deletions Swadesh/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}

.container{
width: 100%;
height: 100vh;
background-image: url(https://img.freepik.com/premium-photo/business-digital-data-network-connecting-with-number-line-abstract-background-blue-theme_222260-730.jpg?w=1380); /* You can change background here*/
background-position: center;
background-size: cover;
display: flex;
align-items: center;
justify-content: center;
}

.card{
width: 90%;
max-width: 440px;
color: #fff;
text-align: center;
padding: 50px 35px;
border: 1px solid rgba(255, 255, 255, 0.3);
background: rgba(255,255,255,0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0,0,0,0.1);
backdrop-filter: blur(5px);
}

.card img{
width: 140px;
border-radius: 50%;
font-weight: 600;
margin-top: 20px;
}

.card p{
font-size: 18px;
margin: 10px auto;
max-width: 330px;
}

.card .links img{
width: 40px;
border-radius: 50%;
margin: 10px 5px;
transition: background 0.5s;
}

.card .links img:hover{
background: #ffffff;
box-shadow: 0 0 10px rgb(169, 205, 235);
}

.btn{
text-decoration: none;
display: inline-block;
font-size: 18px;
font-weight: 500;
background-color: transparent;
border: 1px solid white;
color: #fff;
padding: 10px 30px;
border-radius: 30px;
margin: 30px 0 10px;
}

.btn:hover{
cursor: pointer;
background-color: white;
font-weight: medium;
box-shadow: 0 0 10px rgb(169, 205, 235);
color: #137570;
}