JSFiddle - React, Tailwind, and code Playground
by Dmitry Fateev
HTML
<header>
<span class="logo">Design Studios</span>
<nav>
<a href="#">Home</a>
<a href="#">About Us</a>
<a href="#">Services</a>
<a href="#">Portfolio</a>
<a href="#">Contact us</a>
</nav>
</header>
CSS
* {
box-sizing: border-box;
}
html {
font-family: Arial;
}
body {
background-color: #FFF;
width: 1100px;
height: 2000px;
margin: 0 auto;
}
a {
text-decoration: none;
color: #EEE;
}
header {
padding-left: 70px;
background-color: #333;
height: 133px;
}
header .logo {
display: inline-block;
float: left;
font-size: 60px;
line-height: 16px;
margin-top: 41px;
color: #EEE;
}
nav {
margin-top: 73px;
margin-right: 70px;
float: right;
font-size: 16px;
font-weight: 400;
line-height: 42px;
}