Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
AlipourFatemeh authored Nov 18, 2024
0 parents commit 4e6f0c1
Show file tree
Hide file tree
Showing 4 changed files with 276 additions and 0 deletions.
Binary file added IMG_E9600.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 44 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!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 href="https://unpkg.com/[email protected]/css/boxicons.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<header class="header">
<a href="#" class="logo">Aalipour</a>

<nav class="navbar">
<a href="#" style="--i:1;" class="active">Home</a>
<a href="#" style="--i:2;">About</a>
<a href="#" style="--i:3;">Skils</a>
<a href="#" style="--i:4;">Protfile</a>
<a href="#" style="--i:5;">Contact</a>
</nav>
</header>
<section class="home">
<div class="home-content">
<h3>Hello, It's Me</h3>
<h1>Fatemeh Aalipour</h1>
<h3>And I'm a <span class="multiple-text"></span></h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Reiciendis unde aliquid in praesentium?</p>
<div class="social-mediya">
<a href="#" style="--i:6" ><i class="bx bxl-instagram-alt"></i></a>
<a href="#" style="--i:7" ><i class="bx bxl-twitter"></i></a>
<a href="#" style="--i:8"><i class="bx bxl-facebook-circle"></i></a>
<a href="#" style="--i:9"><i class="bx bxl-linkedin"></i></a>
</div>
<a href="#" class="btn">Download CV</a>
</div>
<div class="home-img">
<img src="./IMG_E9600.JPG" alt="">
</div>
</section>
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
<script src="script.js"></script>
</body>
</html>
7 changes: 7 additions & 0 deletions script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
var typed = new Typed(".multiple-text",{
strings:["Frontend Developer" , "computer engineer" ,"web programmer" , " I live in Shahrekord"],
typeSpeed : 100,
backSpeed : 100,
backDelay : 1000,
loop:true
});
225 changes: 225 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,225 @@
*{
margin: 0px;
padding: 0px;
font-family: 'Gill Sans', 'Gill Sans MT';
box-sizing: border-box;
}

body{
background: #1f242d;
color: #fff;
}

.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{
font-size: 25px;
color: white;
font-weight: 600;
cursor: default;
opacity: 0;
animation: slideRight 1s ease forwards;

}


.navbar a{
display: inline-block;
font-size: 18px;
text-decoration: none;
color: white;
font-weight: 500;
padding: 5px;
margin-right: 50px;
transition: .3s;
opacity: 0;
animation: slideTop .5s ease forwards;
animation-delay: calc(.2s * var(--i));
}


.navbar a:hover,
.navbar a.active{
color: #0ef;
}

.home{
position: relative;
width: 100%;
height: 100vh;
display: flex;
justify-content: space-between;
align-items: center;
padding: 70px 10% 0;
}


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

.home-content h3{
font-size: 32px;
font-weight: 700;
opacity: 0;
animation: slideBottom 1s ease forwards;
animation-delay: .7s ;
}

.home-content h3 span{
color: #0ef;
}

.home-content h3:nth-last-of-type(2){
margin-bottom: 30px;
animation: slideTop 1s ease forwards;
animation-delay: .7s ;
}

.home-content h1{
font-size: 56px;
font-weight: 700;
margin: -3px 0;
opacity: 0;
animation: slideRight 1s ease forwards;
animation-delay: 1s;
}

.home-content p{
font-size: 16px;
opacity: 0;
animation: slideLeft 1s ease forwards;
animation-delay: 1s;
}



.home-img img{
max-width: 450px;
margin-right: 30px;
border: 3px solid #0ef;
border-radius: 50%;
opacity: 0;
animation: zoomIn .5s ease forwards,floatImage 4s ease-out infinite;
animation-delay: 2s,3s ;


}

.social-mediya a{
display: inline-flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
background: transparent;
border: 2px solid #0ef;
border-radius: 50%;
font-size: 20px;
color: #0ef;
text-decoration: none;
margin: 30px 15px 30px 0px ;
transition: .5s ease;
opacity: 0;
animation: slideRight 1s ease forwards;
animation-delay: calc(.2s*var(--i));
}

.social-mediya a:hover{
background: #0ef;
color: #1f242d;
}

.btn{
display: inline-block;
padding: 12px 28px;
background: #0ef;
border-radius: 40px;
box-shadow: 0 0 10px #0ef;
color: #1f242d;
letter-spacing: 1px;
text-decoration: none;
font-weight: 600;
opacity: 0;
animation: slideTop .5s ease forwards;
animation-delay: 2s ;
}

@keyframes slideRight{
0%{
transform: translateX(-100px);
}
100%{
transform: translateX(0);
opacity: 1;
}
}

@keyframes slideLeft{
0%{
transform: translateY(100px);
}
100%{
transform: translateY(0);
opacity: 1;
}
}

@keyframes slideTop{
0%{
transform: translateY(100px);
}
100%{
transform: translateY(0);
opacity: 1;
}
}


@keyframes slideBottom{
0%{
transform: translateY(-100px);
}
100%{
transform: translateY(0);
opacity: 1;
}
}


@keyframes zoomIn{
0%{
transform: scale(0);
opacity: 0;
}
100%{
transform: scale(1);
opacity: 1;
}
}


@keyframes floatImage{
0%{
transform: translateY(0);
}
50%{
transform: translateY(-24px);
}
100%{

}
}


0 comments on commit 4e6f0c1

Please sign in to comment.