<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Таблица</title>
<style>
body {
background: linear-gradient(to right top, white 0%, red 67%, pink 100%) !important;
font-family: "Roboto", sans-serif;
margin: 0;
min-height: 100vh;
background-repeat: no-repeat;
background-attachment: fixed;
}
.main {
font-size: 16px;
}
h1 {
text-align: center;
}
.footer {
font-size: 12px;
text-align: right;
}
</style>
</head>
<body>
<h1>Суши бар <em>«Йокогама»</em></h1>
<p class="main">Прайс лист</p>
<p class="footer"><i>© Читатели книги «HTML и CSS»<br>Все права защищены.</i></p>
</body>
</html>