<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Сайт</title>
<style>
body { margin:0; font-family:sans-serif }
.header, .footer { background:#3b3e66; color:#fff; padding:10px }
table { width:100% }
.menu { text-align:center; margin-top:10px }
.menu button {
background:#364e96; color:#fff; border:1px solid #000;
padding:6px 12px; margin:2px; cursor:pointer
}
.content { padding:20px }
.content img { width:300px }
.content td { padding-left:15px }
.footer { font-size:14px }
</style>
</head>
<body>
<div class="header">
<table>
<tr>
<td><img src="logo.png" width="40"></td>
<td align="right">
Контакты: 89103447886<br>
Почта: Axdhdf@gmail.com
</td>
</tr>
</table>
<div class="menu">
<a href="index.html"><button>Главная</button></a>
<a href="about.html"><button>О нас</button></a>
<a href="services.html"><button>Услуги</button></a>
<a href="achievements.html"><button>Наши Заслуги</button></a>
<a href="studios.html"><button>Наши Студии</button></a>
<a href="login.html"><button>Вход</button></a>
</div>
</div>
<div class="content">
<table>
<tr>
<td><img src="https://via.placeholder.com/300x200"></td>
<td>
<p>Lorem ipsum dolor sit amet...</p>
<p>Lorem ipsum dolor sit amet...</p>
<p>Lorem ipsum dolor sit amet...</p>
<p>Lorem ipsum dolor sit amet...</p>
</td>
</tr>
</table>
</div>
<div class="footer">
<table>
<tr>
<td align="right">
Студия записи звука<br>
г. Киев, пр-т Киевская 22<br>
23 января 2024
</td>
</tr>
</table>
</div>
</body>
</html>