InternetProga/boockRead.html
2025-02-17 11:32:06 +04:00

27 lines
1020 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="ru">
<title>BoockRead</title>
<link rel="stylesheet" href="resourse/main.css">
<body>
<div class="container">
<h1>Название книги</h1>
<div class="author">
<p><strong>Автор:</strong> Иван Иванов</p>
</div>
<img src="book-cover.jpg" alt="Обложка книги" />
<p><strong>Жанр:</strong> Фантастика</p>
<p><strong>Описание:</strong> Краткое описание книги...</p>
<!-- Блок с текстом книги -->
<div class="book-content">
<h2>Глава 1: Начало</h2>
<p>Это начало истории... Текст первой главы...</p>
<h2>Глава 2: Продолжение</h2>
<p>Текст второй главы...</p>
</div>
<button>Продолжить чтение</button>
</div>
</body>
</html>