-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (55 loc) · 2.89 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Классные аниме</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="header">
<div class="header__container">
<h1 class="title">Годные аниме</h1>
<div class="header__menu menu">
<button type="button" class="menu__icon icon-menu"><span></span></button>
<nav class="menu__body">
<ul class="menu__list">
<li class="menu__item"><button data-f="1" type="button" class="menu__btn">Мастера меча онлайн</button></li>
<li class="menu__item"><button data-f="2" type="button" class="menu__btn">Класс превосходства</button></li>
<li class="menu__item"><button data-f="3" type="button" class="menu__btn">Последний Серафим</button></li>
<li class="menu__item"><button data-f="4" type="button" class="menu__btn">Дороро</button></li>
<li class="menu__item"><button data-f="5" type="button" class="menu__btn">Башня Бога</button></li>
<li class="menu__item"><button data-f="6" type="button" class="menu__btn">О моем перерождении в слизь</button></li>
<li class="menu__item"><button data-f="7" type="button" class="menu__btn">Повар-боец Сома</button></li>
<li class="menu__item"><button data-f="8" type="button" class="menu__btn">Обещанный неверленд</button></li>
<li class="menu__item"><button data-f="9" type="button" class="menu__btn">Черный клевер</button></li>
</ul>
</nav>
</div>
</div>
</header>
<main>
<section class="main">
<div class="main__container">
<div class="block"></div>
<ul class="main__content"></ul>
<div class="home-screen">
<h2 class="home-screen__title">Здесь представлены интересные аниме по моему личному мнению)</h2>
<svg class="home-screen__img" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="459px" height="380px" viewBox="0 0 459 459" style="fill: #e5ede2" xml:space="preserve">
<g id="reply">
<path d="M178.5,140.25v-102L0,216.75l178.5,178.5V290.7c127.5,0,216.75,40.8,280.5,130.05C433.5,293.25,357,165.75,178.5,140.25z"/>
</g>
</svg>
<p class="home-screen__description"></p>
</div>
</div>
</section>
</main>
<script src="script.js"></script>
</body>
</html>