<!DOCTYPE html>
<html lang="ru">
<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>Wordpress</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section class="promo">
<div class="container">
<div class="logo"></div>
<img src="icons/logo.png" alt="logo" class="logo_img">
<div class="logo_text">Wordpress интенсив</div>
</div>
</section>
</body>
</html>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.container {
width: 1140px;
margin: 0 auto;
}
.promo {
height: 800px;
background: url('../img/main_bg.png') center center/cover no-repeat ;
padding: 38 0 61 0;
}
.logo_img {
display: block;
margin: 0 auto;
}
.logo_text {
font-family: Roboto;
font-weight: 500;
font-size: 15px;
line-height: 24px;
text-align: center;
text-transform: uppercase;
color: #FFFFFF;
margin-top: 14px;
}