Off-Platform Project: Tea Cozy
this is my version off this project i wanted to make something mine so i dont follow everything any feedback is welcome
<!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="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Arvo&family=Lato:[email protected];400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>BeastPhotographyPortfolio</title>
</head>
<body>
<header>
<nav class="container">
<img src="images/logo for portfolio.png" alt="logo">
<ul class="container-ul">
<li><a href="index.html#mission">Mission</a></li>
<li><a href="index.html#featured">Featured Photos</a></li>
<li><a href="index.html#about_me">About me</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero" id="mission">
<div>
<h2>Our Mission</h2>
<h4>to provide an <span>enjoyable</span> experience in front of the camera as well as timeless photographs that you will treasure for a <span>lifetime</span></h4>
</div>
</section>
<section class="featured" id="featured">
<h2>Photos of the month </h2>
<ul>
<li>
<img src="images/AAA_7749-2.jpg" alt="portrait">
<h4>The eyes shout what the lips fear to say.</h4>
</li>
<li>
<img src="images/AAA_7741.jpg" alt="portrait under sheets">
<h4>A reader lives a thousand lives before he dies . . . </h4>
</li>
<li>
<img src="images/DSC_0115.jpg" alt="poland">
<h4>St. Mary’s Basilica</h4>
</li>
<li>
<img src="images/DSC_0049.jpg" alt="portrait">
<h4>A portrait is not made in the camera but on either side of it.</h4>
</li>
<li>
<img src="images/valia teliko.jpg" alt="photoshop portrait">
<h4>We all have magic inside us.</h4>
</li>
</ul>
</section>
<section class="about_me" id="about_me">
<h2>About me</h2>
<div class="info">
<h4>Hi, I'm Tasos</h4>
<p>I am a <span>photographer</span> based in Athens, Greece. I have been taking photos for 3 years now and I am very passionate about it. I love capturing the <span>beauty of the world and the people around me.</span></p>
</div>
</section>
</main>
<footer>
<h2>The Beast Photography</h2>
<h5> Contact me:[email protected]</h5>
<h5>Phone number: 6987654321</h5>
<h5 class="rights">© 2021 The Beast Photography. All rights reserved.</h5>
</footer>
</body>
</html>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Lato', sans-serif;
font-size: 22px;
color: seashell;
background-color: #3a3a3a;
margin: 0;
padding: 0;
text-align: center;
}
nav img{
width: 60px;
height: auto;
margin: 5px 10px;
}
.container {
display: flex;
justify-content: space-between;
height: 69px;
border-bottom: 1px solid seashell;
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 99;
background-color:#000000;
}
.container-ul{
display: flex;
justify-content: space-between;
align-items: center;
list-style: none;
}
li{
margin: 0 10px;
}
li a{
text-decoration: underline;
color: seashell;
}
.hero{
z-index: 1;
height: 700px;
text-align: center;
background-image: url(images/jeff-hopper-iCtJF-A5hvs-unsplash.jpg);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
background-size: 1200px 700px;
margin: 0 50px;
}
span{
color: #00BFBE;
font-size: 30px;
font-weight: bold;
text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.hero div{
position: relative;
top: 350px;
background-color: #742D05;
display: flex;
justify-content: center;
align-items:center;
justify-content: space-between;
flex-direction: column;
padding: 10px;
}
.hero div h2 {
margin-bottom: 15px;
color: #00BBE6;
font-family: 'Arvo';
}
.featured {
margin: auto;
padding: 20px;
color: seashell;
text-align: center;
border-radius: 10px;
width: 1350px;
}
.featured h2{
margin: 50px;
border-bottom: 1px solid seashell;
border-radius: 120px;
padding: 10px;
font-family: 'Arvo';
}
.featured ul{
display: flex;
justify-content: center;
flex-wrap: wrap;
list-style: none;
align-content: space-between;
}
.featured ul li{
margin: 20px 40px;
color: rgb(255, 255, 255);
font-size: 15px;
}
.featured ul li img{
width: 250px;
height: auto;
margin-bottom: 10px;
border: solid 5px #742D05;
box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
}
.about_me{
background-image: url(images/OIG.jpg);
background-size: cover;
background-repeat: no-repeat;
height: 500px;
background-position: center;
background-size: 1200px auto;
padding: 50px;
}
.about_me h2{
margin-bottom: 20px;
border-bottom: 1px solid seashell;
color: white;
border-radius: 120px;
padding: 10px;
font-family: 'Arvo';
}
.info{
position: relative;
top: 40px;
width: 300px;
height: 300px;
background-color: #742D05;
margin: auto;
}
footer{
background-color: #000000;
height: 200px;
justify-content: center;
align-items: center;
color: seashell;
font-size: 20px;
font-weight: bold;
text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
footer h2{
margin: 20px;
padding: 10px;
font-family: 'Arvo';
}
footer h5{
margin: 20px;
padding: 10px;
font-family: 'Arvo';
}
.rights{
text-align: left;
}