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
37 changes: 37 additions & 0 deletions Web Development/Task/web devlopment/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!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>Personle Portfolio website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="hero">
<nav>
<img src="C:\Users\ankit\Downloads\icons8-portfolio-64.png" class="logo">
<ul>
<li><a href="#">HOME</a></li>
<li><a href="#">ABOUT</a></li>
<li><a href="#">PORTFOLIO</a></li>
<li><a href="#">SERVICES</a></li>
<li><a href="#">HIRE ME</a></li>
</ul>
</nav>
<div class="detel">
<h1>I,m Ankit <span>Biswal</span></h1>
<p>This is my official portfolio website to showes all
<br> Details and work exiprins web development
</p>
<a href="#">DOWNLOAD CV</a>
</div>

<div class="images">
<img src="C:\Users\ankit\Downloads\Picsart_24-03-25_19-47-07-053.png"class="Picsart_24-03-25_19-47-07-053">
<img src="" class="">
</div>
</div>
</div>
</body>
</html>
92 changes: 92 additions & 0 deletions Web Development/Task/web devlopment/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
*{

margin: 0;
padding: 0;
font-family: sans-serif;
}
.herof{
position: relative;
width: 100%;
height: 100vh;
background:#eff4fd;
}

nav{
display: flex;
width: 84%;
margin: auto;
padding: 20px 0;
align-items: center;
justify-content: space-between;

}

nav ul li{
display: inline-block;
list-style: none;
margin: 10px 20px;
}

nav ul li a{
text-decoration: none;
color: #000;
font-weight: bold;

}

nav ul li a:hover{
color: crimson;
}

.detel{

margin-left: 8%;
margin-top: 15%;
}
.detel h1{
font-size: 50px;
color: #212121;
margin-bottom: 20px;
}

span{
color: orange;
}

.detel{
color: #555;
line-height: 22px;

}

.detel a{
background: #212121;
padding: 10px 18px;
text-decoration: none;
font-weight: bold;
color: #fff;
display: inline-block;
margin: 30px 0;
border-radius: 5px;
}

.images{
width: 45%;
height: 75%;
position: absolute;
bottom: 0;
top: 20%;
right: 100px;

}

.images img{
height: 100%;
position: absolute;
left: 100%;
bottom: 0;
transform: translateX(-85%);
transition: bottom 1s, left 1s;
}