Skip to content
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
Binary file added 1.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 3409297.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 3967ed45-b186-4c01-bb6c-97944d313e76.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
104 changes: 104 additions & 0 deletions about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family : 'Josefin Sans' ,sans-serif;
}
.hero{
position:fixed;
height : 100vh;
width: 100%;
/* background-image: linear-gradient(rgba(0,0,0,0.3),transparent), url("https://i.postimg.cc/fWS1YJBr/7cb9631c-565b-4668-8a3b-a31a76158eb9.jpg");*/
background-image: linear-gradient(rgba(0,0,0,0.3),transparent), url("3409297.jpg");
background-position: center;
background-size: cover;
position:relative;
padding : 0 8%;
}
nav{
display : flex;
align-items : center;
justify-content : space-between;
/* padding-top : 45px;
padding-left : 8%;*/
padding-right : 8%;
padding-bottom: 10%;
background-color: transparent;
color: aliceblue;
}
nav ul li{
list-style-type : none;
display : inline-block;
padding : 10px 25px;
}
nav ul li a{
color : white;
text-decoration : none;
font-weight : bold;
text-transform : capitalize;
}
nav ul li a:hover{
color :#f9004d;
transition : .4s;
}


.about{
width : 100%;
padding : 100px 0px;
background-color: #191919;
background-image: url('https://i.postimg.cc/g04ZHXCs/misty-landscape-with-forest-covered-with-fog-dark-storm-clouds.jpg');

}
.about img{
height : auto;
width : 430px;
}
.about-text{
width : 550px;
}
.main{
width : 1130px;
max-width : 95%;
margin: 0 auto;
display: flex;
align-items: center;
justify-content : space-around;
}
.about-text h2{
color: white;
font-size: 75px;
text-transform: capitalize;
margin-bottom: 20px;
}
.about-text span{
color :#f9004d;
}
.about-text h5{
color : white;
letter-spacing : 2px;
font-size : 22px;
margin-bottom : 25px;
text-transform: capitalize;
}
.about-text p{
color : #fcfc;
letter-spacing: 1px;
line-height : 28px;
font-size : 18px;
margin-bottom : 45px;
}
.btn{
background-color: #f9004d;
color :white;
text-decoration : none;
border : 2px solid transparent;
font-weight: bold;
padding : 10px 25px;
border-radius : 30px;
transition: transform .4s;
}

.btn:hover{
transform: scale(1.2);
}
52 changes: 52 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<!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>About</title>
<link rel="stylesheet" href="about.css">

</head>

<body>
<!-- <nav>

<ul>
<li><a href="index.html" target="_parent">Home</a></li>
<li><a href="#" >About Us</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Skills</a></li>
<li><a href="#">Contact Me</a></li>
</ul>

</nav> -->
<section class="about">
<nav>

<ul>
<li><a href="index.html" target="_parent">Home</a></li>
<li><a href="about.html" target="_parent">About Us</a></li>
<li><a href="education.html" target="_parent">Educatioin</a></li>
<li><a href="skill.html" target="_parent">Skills</a></li>
<li><a href="contact.html" target="_parent">Contact Me</a></li>
</ul>

</nav>
<div class="main">
<img src="https://i.postimg.cc/t4TjD8QS/2bb5d3a5-e353-4d24-86b2-b9eaa0faa110.jpg" alt="..">
<div class="about-text">
<h2>About Me</h2>
<h5>Devloper & <span>Problem-Solver</span></h5>
<p>I am a current first year student at Indian Institute of Information Technology, Kalyani. I love
learning new things about computers. I love competitive programming and am learning more and more
about new things in computer science.
</p>
<button type="button" class="btn btn-info">Let's Talk</button>
</div>
</div>
</section>
</body>

</html>
Loading