<!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>
</body>
</html>
*
{
padding: 0;
margin: 0;
outline: none;
border: none;
box-sizing: border-box;
}
body
{
font-family: 'Lato', sans-serif;
}
.container
{
max-width: 1170px;
width: 100%;
margin: 0 auto;
}
header img
{
padding-top: 21px;
}
header div
{
display: inline-block;
margin-left: 312px;
font-size: 13.5px;
margin-bottom: 100px;
}
header button
{
color: white;
background-color: #FFBB42;
border-radius: 2px;
padding: 10px 15px;
display: inline-block;
}
header a
{
text-decoration: none;
color: #868686;
padding: 20px;
}