<!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>Site btw</title>
<link rel="stylesheet" href="css\main.css">
</head>
<body>
<div class="container">
<header>
<img src="img/logo.png" alt="logo">
<div>
<button>HOME</button>
<a href="#">SERVICE</a>
<a href="#">ABOUT US</a>
<a href="#">PRICING TABLE</a>
<a href="#">HOW IT WORK</a>
<a href="#">HAPPY CLIENTS</a>
<a href="#">CONTACT US</a>
</div>
</header>
<div class="register">
<h1>BOOST UP YOUR LOCATE BUSINESS</h1>
<h2>Lorem Ipsum is simply dummy text of printing and typesetting industry. Lorem Ipsum typesetting</h2>
</div>
</div>
</body>
</html>
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');
*
{
padding: 0;
margin: 0;
outline: none;
border: none;
box-sizing: content-box;
}
body
{
font-family: 'Lato', sans-serif;
}
.container
{
width: 1170px;
margin: 0 auto;
}
header
{
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 15px;
}
div button
{
background-color: #FFBB42;
border-radius: 2px;
padding: 10px 20px;
color: white;
}
div a
{
color: #868686;
text-decoration: none;
padding: 10px;
}
.register
{
background-color: #709DCA;
}