Skip to content

Commit

Permalink
Profileist
Browse files Browse the repository at this point in the history
Student-Adil committed Jan 17, 2025
0 parents commit af46e93
Showing 6 changed files with 102 additions and 0 deletions.
Binary file added Images/active-states.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 Images/avatar-jessica.jpeg
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 Images/destkop-design.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 Images/mobile-design.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
76 changes: 76 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
*{
padding: 0;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
box-sizing: border-box;
}
body{
background-color:;
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(0, 0, 0, 0.844);
height: 100vh;
width: 100wh;

}
.box{

padding: 20px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: #1F1F1F;
border: none;
border-radius: 20px;
width: 370px;
}
h2{
color: white;
padding-bottom: 14px;
text-align: center;
}
p{
text-align: center;
color: #C4F82A;
font-size: 14px;
font-weight: 600;
}
button{
height: 40px;
border: none;
border-radius: 10px;
background-color: #333333;
color:#fff;
font-weight: 700;
width: 100%;
margin: 10px;

}
span{
padding-top: 25px;
padding-bottom: 18px;
color:#A8A8A8;
font-size: 15px;
font-weight: 600;
text-align: center;
}
button:hover{
background-color:#C4F82A ;
color: black;
font-weight: 700;
}
img{
border: none;
border-radius: 50%;

height: 50px;
width: 50px;
display: flex;
justify-content: center;
align-items: center;
margin: 0;


}
26 changes: 26 additions & 0 deletions 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="box">
<div class="">
<img src="Images/avatar-jessica.jpeg" alt="photo">
</div>
<h2>Jesscia Randall</h2>
<p>London,United Kingdom</p>
<span> "Front-end developer and avid reader."</span>

<button>GitHub</button>
<button>Frontend Mentor</button>
<button>LinkedIn</button>
<button>Twitter</button>
<button>Instagram</button>

</div>
</body>
</html>

0 comments on commit af46e93

Please sign in to comment.