<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.logo p{
display: flex;
font-weight: bold;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.logo{
cursor: pointer;
}
nav{
display: flex;
justify-content: space-between;
align-items: baseline;
font-weight: bold;
background-color: aliceblue;
box-shadow: 0px 4px 3px ;
}
ul{
display: flex;
list-style: none;
gap: 40px;
margin-right: 20px;
}
li{
cursor: pointer;
}
li:hover{
background-color: darkslateblue;
color: black;
padding: 10px;
border-radius: 20px;
}
h1{
text-align: center;
margin-top: 60px;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
p{
text-align: center;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.imges1 img{
width: 1200px;
margin-left: 30px;
background-size: cover;
}
.row2{
display: flex;
justify-content: center;
margin-left: 50px;
margin-top: 20px;
gap: 20px;
}
.row2 img:hover{
padding: 20px;
border-radius: 30px;
padding: 15px;
}
h2{
text-align: center;
}
.about{
padding: 10px;
background-color: darkcyan;
border-radius: 40px;
margin-top: 30px;
margin-right: 80px;
margin-left: 80px;
}
.cards{
display: flex;
justify-content: center;
align-items: center;
margin-top: 22px;
}
.card h3 {
text-align: center;
font-weight: bold;
background-color: aquamarine;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
p{
margin-left: 20px;
margin-right: 20px;
}
</style>
</head>
<body>
<nav>
<div class="logo">
<p>Website Header</p>
</div>
<ul>
<li>Home</li>
<li>About</li>
<li>Course</li>
<li>Gallery</li>
</ul>
</nav>
<h1>24 Website Header Examples, Trends & Tips for Conversion</h1>
<p>Despite taking up minimal real estate, headers are the most heavily engaged-with element on a website. Businesses looking to leave an impression will <br> strive to strike a perfect balance—of providing an easy and intuitive yet unique and <br>stimulating experience.
In this post we’ll be sharing 24 website header examples while breaking down:</p>
<div class="imges1">
<img src="imgs/Cooffee Banner Royaflty.jpg" alt="">
</div>
<div class="row2">
<img src="imgs/Best1.jpg" alt="">
<img src="imgs/Best2.jpg" alt="">
<img src="imgs/Best3.jpg" alt="">
</div>
<div class="about">
<h2>About us</h2>
<p>We design beautiful and modern websites to help businesses grow online.</p>
</div>
<div class="cards">
<div class="card">
<h3>Heading</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Eius?</p>
</div>
<div class="card">
<h3>Heading</h3>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Est.</p>
</div>
<div class="card">
<h3>Heading</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo!</p>
</div>
</div>
</body>
</html>
