112 lines
3.0 KiB
HTML
Raw Permalink Normal View History

2025-02-14 13:21:48 +04:00
<!DOCTYPE html>
<html lang="ru">
<head>
<title>Заголовок страницы</title>
<meta charset="UTF-8">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div class="menu">
<a href="index.html">
<img src="img/manga.png" alt="ЛОГО">
</a>
2025-02-15 00:26:11 +04:00
<p>надо будет прикрепить, чтобы не двигался при прокрутке</p>
2025-02-15 00:01:59 +04:00
<p>Тут возможно будет каталог</p>
<a href="account.html">вход</a>
2025-02-14 13:21:48 +04:00
</div>
2025-02-15 00:26:11 +04:00
<div class="main">
2025-02-15 15:23:01 +04:00
<h3>Наши произведения</h3>
<section class="icons"><!--секция с обложками-->
<div class="icon">
<a href="manga.html">
<figure>
<img src="img/заглушка.jpg" alt="">
<figcaption>Заглушка</figcaption>
</figure>
</a>
</div>
<div class="icon">
<a href="manga.html">
<figure>
<img src="img/заглушка.jpg" alt="">
<figcaption>Заглушка</figcaption>
</figure>
</a>
</div>
<div class="icon">
<a href="manga.html">
<figure>
<img src="img/заглушка.jpg" alt="">
<figcaption>Заглушка</figcaption>
</figure>
</a>
</div>
<div class="icon">
<a href="manga.html">
<figure>
<img src="img/заглушка.jpg" alt="">
<figcaption>Заглушка</figcaption>
</figure>
</a>
</div>
<div class="icon">
<a href="manga.html">
<figure>
<img src="img/заглушка.jpg" alt="">
<figcaption>Заглушка</figcaption>
</figure>
</a>
</div>
<div class="icon">
<a href="manga.html">
<figure>
<img src="img/заглушка.jpg" alt="">
<figcaption>Заглушка</figcaption>
</figure>
</a>
</div>
<div class="icon">
<a href="manga.html">
<figure>
<img src="img/заглушка.jpg" alt="">
<figcaption>Заглушка</figcaption>
</figure>
</a>
</div>
</section>
2025-02-14 13:21:48 +04:00
</div>
2025-02-15 15:23:01 +04:00
<div class="news">
<h3>Наши новости:</h3>
<section class="card-news"><!--секция с новостями-->
<div class="card">
<a href="news.html">
<img src="img/новость.jpg" alt="">
</a>
<div class="description-news">
<h4>Новость 1</h4>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Libero laborum possimus itaque quibusdam beatae ipsam odit sed? Vel blanditiis repellendus,
ea nam, incidunt odio sit amet sequi nihil, laudantium aspernatur!</p>
</div>
2025-02-15 15:23:01 +04:00
</div>
<div class="card">
<a href="news.html">
<img src="img/новость.jpg" alt="">
</a>
<div class="description-news">
<h4>Новость 2</h4>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Libero laborum possimus itaque quibusdam beatae ipsam odit sed? Vel blanditiis repellendus,
ea nam, incidunt odio sit amet sequi nihil, laudantium aspernatur!</p>
</div>
2025-02-15 15:23:01 +04:00
</div>
</section>
2025-02-14 13:21:48 +04:00
</div>
2025-02-15 15:23:01 +04:00
2025-02-14 13:21:48 +04:00
</body>
</html>