JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset='UTF-8'>
<title>--Теги--</title>
<link href="https://fonts.googleapis.com/css?family=PT+Sans+Narrow" rel="stylesheet">
</head>
<div class="wrap">
<div class="img-wrap">
<img src="https://picua.org/images/2019/02/09/2e77f5326d40b976198b4c9bbcb34337.png">
</div>
<div class="tag-wrap">
<h1><a href='4sprav.html'>Справочник</a></h1>
</div>
</div>
CSS
*{
margin:0px;
padding:0px;}
.wrap{
height:150px;
background:blue;
}
.img-wrap{
display:inline-block;
width:50%;
height:100px;
background:red;
}
.tag-wrap {
display:inline-block;
width:49%;
background-color:green;
height:100px;
}
.tag-wrap a{
color:black;
}
img{
max-width:100%;
height:auto;}