Skip to content
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

added my profile card #149

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
9 changes: 9 additions & 0 deletions Code/arun kumar paswan/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<div align="center"><img src="https://readme-typing-svg.herokuapp.com?color=00A6A6&size=25&center=true&vCenter=true&width=450&height=30&lines=Fork+it,+clone+it,+set+it+up+and;Let's+get+started!"/>
</div>

# Profile-Card Template
This repo will help you to create your profile card.
Here below is the preview of the profile card.
You can play around with the designs, backgrounds and colors.

![github](https://user-images.githubusercontent.com/87236107/193006036-788e6cbe-650f-4ea4-b730-ac30b5f8b9f3.png)
Binary file added Code/arun kumar paswan/assets/background1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Code/arun kumar paswan/assets/github_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Code/arun kumar paswan/assets/img.jpeg
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 Code/arun kumar paswan/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arun Kumar Paswan</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="card" data-tilt>
<img src="assets/img.jpeg">
<h2>Arun Kumar Paswan</h2>
<p>Front-end Web Developer<br>Competitive Programmer</p>
<div class="links">
<a href="https://twitter.com/ArunKum98582791"><img src="https://cdn-icons-png.flaticon.com/512/2168/2168336.png"></a>
<a href="https://github.com/akpaswan67"><img src="assets/github_logo.png"></a>
<a href="https://www.linkedin.com/in/arunkumarpaswan16022002/"><img src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png"></a>
</div>
<a href="mailto:[email protected]" class="btn">Contact me</a>
</div>
</div>
<script src="vanilla-tilt.js"></script>
</body>
</html>
82 changes: 82 additions & 0 deletions Code/arun kumar paswan/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}

.container{
width: 100%;
height: 100vh;
background-image: url(assets/background1.jpg); /* 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(189, 130, 29, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0,0,0,0.1);
backdrop-filter: blur(5px);
}
.card img{
width: 200px;
height: 200px;
border-radius: 100%;
font-weight: 600;
margin-top: 20px;
}
.links img{
width: 50px;
height: 50px;
border-radius: 100%;
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: 0.5s;
}

.card .links img:hover{
background: #d79232;
box-shadow: 0 0 10px #d7bf32;
}

.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: #d79232;
font-weight: medium;
box-shadow: 0 0 10px #d7bf32;
color:black;
}
Loading