<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="../css/style.css">
    <title>My Company</title>
</head>
<body>
    <div class="wrapper">
        <div class="home">
            <div class="home-header">
                <div class="home-header-title">MY COMPANY</div>
                <div class="home-header-menu">
                    <a href="#" class="menu-href-home">HOME</a>
                    <a href="#" class="menu-href-about">ABOUT</a>
                    <a href="#" class="menu-href-services">SERVICES</a>
                    <a href="#" class="menu-href-portfolio">PORTFOLIO</a>
                    <a href="#" class="menu-href-test">TESTIMONIALS</a>
                    <a href="#" class="menu-href-contact">CONTACT</a>
                </div>
            </div>
        </div>
    </div>
</body>
</html>
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@font-face {
  font-family: "Open Sans - Extrabold";
  src: url(../font/OpenSans-Bold.ttf);
}
@font-face {
  font-family: "Open Sans";
  src: url(../font/OpenSans-Regular.ttf);
}
@font-face {
  font-family: "Open Sans Light";
  src: url(../font/OpenSans-Light.ttf);
}
@font-face {
  font-family: "Open Sans - Semibold";
  src: url(../font/OpenSans-SemiBold.ttf);
}
/* ---------------------------------- */

.wrapper {
  position: relative;
  max-width: 100%;
  max-height: 100%;
}
.home {
  max-width: 100%;
  min-height: 790px;
  background-color: #000000;
}
.home-header {
  position: relative;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  max-width: 80%;
}
.home-header-title {
  min-width: 165px;
  min-height: 19px;
  color: #ffffff;
  font-family: "Open Sans - Extrabold";
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
}
.home-header-menu {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 600px;
  height: auto;
}
.menu-href-home {
  color: #ffffff;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
}
.menu-href-about {
  color: #ffffff;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
}
.menu-href-services {
  color: #ffffff;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
}
.menu-href-portfolio {
  color: #ffffff;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
}
.menu-href-test {
  color: #ffffff;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
}
.menu-href-contact {
  color: #ffffff;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.