JSFiddle - React, Tailwind, and code Playground

by Yan Vetrov

HTML

<div>
  <span><a href="">Почему мы?</a></span>
  <span><a href="">Номера</a></span>
  <span><a href="">Отзывы</a></span>
  <span><a href="">Контакты</a></span>
</div>

CSS

* {
  padding: 0;
  margin: 0;
}

div {
 background-color: #2D89A9;
  display: flex; 
  align-items: center; /* Выравнивание по вертикали */
  justify-content: center; ?
  height: 100px;
}

span {
  margin-right: 15px;
}

a {
  text-decoration: none;
  color: white;
}