Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Ftfezin authored Jan 31, 2024
0 parents commit 8d4647c
Show file tree
Hide file tree
Showing 4 changed files with 231 additions and 0 deletions.
Binary file added home.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
48 changes: 48 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!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">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
<title>Fezin.</title>
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>

<header class="header">
<a href="#" class="logo">Fezin.</a>

<nav class="navbar">
<a href="#" class="active">Home</a>
<a href="#">About</a>
<a href="#">Services</a>
<a href="#">Portfolio</a>
<a href="#">Contact</a>
</nav>

</header>

<section class="home">
<div class="home-content">
<h1>Hi, I'am Fezin Aniq</h1>
<h3>Web Developer</h3>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Non molestiae dolor ex quisquam incidunt dolores animi error, minus molestias autem illo quo vel, ullam fugit facere enim.</p>
<div class="btn-box">
<a href="#">Hire me</a>
<a href="#">Let's Talk</a>
</div>

</div>

<div class="home-sci">
<a href="https://instagram.com/emniq_f" target="_blank"><i class='bx bxl-instagram'></i></a>
<a href="https://twitter.com/FezinAniq" target="_blank"><i class='bx bxl-twitter' ></i></a>
<a href="https://github.com/FtFezin" target="_blank"><i class='bx bxl-github' ></i></a>
</div>

</section>

</body>
</html>
Binary file added logo hider.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
183 changes: 183 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,183 @@
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}

body{
background: #081b29;
color: #ededed;
}

.header{
position: fixed;
top: 0;
left: 0;
width: 100%;
padding:20px 10%;
background: transparent;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 100;
}

.logo{
position: relative;
font-size: 25px;
color: #ededed;
text-decoration: none;
font-weight: 600;
}

.logo::before{
content: '';
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
background: url('logo hider.png');
animation: showRight 1s ease forwards;
animation-delay: 0.4s;
}

.navbar a{
font-size: 18px;
color: #ededed;
text-decoration: none;
font-weight: 500;
margin-left: 35px;
transition: 0.3s;
}

.navbar a:hover,
.navbar a.active{
color: #00abf0;
}

.home{
height: 100vh;
background: url('home.jpg') no-repeat;
background-size: cover;
background-position: center;
display: flex;
align-items: center;
padding: 0 10%;
}

.home-content{
max-width: 600px;
}

.home-content h1{
font-size: 56px;
font-weight: 700;
line-height: 1.2;
}

.home-content h3{
font-size: 32px;
font-weight: 700;
color: #00abf0;
}



.home-content p{
font-size: 16px;
margin: 20px 0 40px;
}

.home-content .btn-box{
display: flex;
justify-content: space-between;
width: 345px;
height: 50px;
}

.btn-box a{
position: relative;
display: inline-flex;
justify-content: center;
align-items: center;
width: 150px;
height: 100%;
background: #00abf0;
border: 2px solid #00abf0;
border-radius: 8px;
font-size: 19px;
color:#081b29;
text-decoration: none;
font-weight: 600px;
letter-spacing: 1px;
z-index: 1;
overflow: hidden;
transition: 0.5s;
}


.home-sci{
position: absolute;
bottom: 40px;
width: 170px;
display: flex;
justify-content: space-between;
}

.home-sci a{
position: relative;
display: inline-flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
background: transparent;
border: 2px solid #00abf0;
border-radius: 50%;
font-size: 20px;
color: #00abf0;
text-decoration: none;
z-index: 1;
overflow: hidden;
transition: 0.5s;
}

.home-sci a:hover{
color: #081b29;
}

.home-sci a::before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 0;
height: 100%;
background: #00abf0;
z-index: -1;
transition: 0.5s;
}

.home-sci a:hover::before{
width: 100%;

}

/* key frames animation*/
@keyframes showRight {
100%{
width: 0;
}

50%{

}

0%{

}
}

0 comments on commit 8d4647c

Please sign in to comment.