<script src="https://kit.fontawesome.com/d4fbb21366.js" crossorigin="anonymous"></script><style media="all" id="fa-v4-font-face">
<i class="fas fa-check"></i>
<i class="fas fa-check"></i> <h2>Put on this page information about your product</h2>
<i class="fas fa-check"></i> <h2>A detailed description of your product</h2>
<i class="fas fa-check"></i> <h2>Tell us about the advantages and merits</h2>
<i class="fas fa-check"></i> <h2>Associate the page with the payment system</h2>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<div class="container">
<div class="header">
<div class="header__left">
<div id="text-head">
<h1>Product name</h1>
</div>
<div id="head-description">
<h2>Put on this page information about your product</h2>
<h2>A detailed description of your product</h2>
<h2>Tell us about the advantages and merits</h2>
<h2>Associate the page with the payment system</h2>
</div>
</div>
<div class="header__right">
<div id="image-head">
<img src="image/Shape-9.png">
</div>
</div>
</div>
</header>
</body>
</html>
*{
margin: 0;
padding: 0;
}
header{
background: #445162;
height: 378px;
color: white;
}
.header {
display: flex;
position: fixed;
top: 0;
right: 0;
width: 100%;
}
.header__left {
width: 60%;
}
.header__right {
width: 40%;
display: flex;
justify-content: flex-end;
}
.container {
padding: 50px;
}
#text-head{
font-weight: bold;
font-size: 30px;
margin-bottom: 48px;
}
#head-description{
line-height: 35px;
}
#image-head{
border: 5px solid black;
width: 470px;
}