-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
158 lines (127 loc) · 6.65 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title> Ведьмак - официальный сайт сериала </title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap&subset=cyrillic" rel="stylesheet">
<link rel="stylesheet" href="CSS/reset.css">
<link rel="stylesheet" href="CSS/swiper.min.css">
<link rel="stylesheet" href="CSS/jquery.fancybox.min.css">
<link rel="stylesheet" href="CSS/animate.css">
<link rel="stylesheet" href="CSS/style.css">
</head>
<body>
<header></header>
<div class="container">
<div class="header">
<img src="img/logo.png" alt="Логотип Ведьмак" class="logo">
<nav class="menu-list">
<a href="#" class="menu-link">Описание</a>
<a href="#" class="menu-link">Трейлер</a>
<a href="#" class="menu-link">Отзывы</a>
</nav>
<div class="cosial">
<a href="#" class="cosial-link"><img src="img/social/twitter.svg" alt="twitter"></a>
<a href="#" class="cosial-link"><img src="img/social/instagram.svg" alt="instagram"></a>
<a href="#" class="cosial-link"><img src="img/social/facebook.svg" alt="facebook"></a>
</div>
<!-- /.cosial -->
</div>
<!-- /.header -->
<div class="menu-button "></div>
</div>
<!-- /.container -->
<main>
<div class="container">
<div class="main-content">
<div class="content">
<div class="span genre animated fadeInRight">2019, фэнтези</div>
<div class="rating animated fadeInRight">
<div class="rating-stars">
<img src="img/Stars.svg" alt="star" class="">
<img src="img/Stars.svg" alt="star" class="">
<img src="img/Stars.svg" alt="star" class="">
<img src="img/Stars.svg" alt="star" class="">
<img src="img/Stars.svg" alt="star" class="">
<img src="img/Stars.svg" alt="star" class="">
<img src="img/Stars.svg" alt="star" class="">
<img src="img/StarO.svg" alt="star-0" class="">
<img src="img/StarO.svg" alt="star-0" class="">
<img src="img/StarO.svg" alt="star-0" class="">
</div>
<!-- /.rating-stars -->
<div class="rating-number ">7/10</div>
<!-- /.rating-number -->
</div>
<!-- /.rating -->
<h1 class="main-title animated fadeInRight">Ведьмак</h1>
<p class="main-description animated fadeInRight">
Ведьмак Геральт, мутант и убийца чудовищ, на своей верной лошади по кличке Плотва путешествует
по Континенту. За тугой мешочек чеканных монет этот мужчина избавит вас от всякой настырной
нечисти — хоть от чудищ болотных, оборотней и даже заколдованных принцесс.
</p>
<a data-fancybox href="https://www.youtube.com/watch?v=GauLSpDzO1M" class="button animated fadeInRight">Смотреть трейлер</a>
</div>
<!-- /.content -->
<a data-fancybox href="https://www.youtube.com/watch?v=GauLSpDzO1M" class="play">
<img src="img/Play.svg" alt="play" class="play-img">
</a>
<!-- /.play -->
</div>
<!-- /.main-content -->
<div class="series">
<!-- Slider main container -->
<div class="swiper-container">
<!-- Additional required wrapper -->
<div class="swiper-wrapper">
<!-- Slides -->
<div class="swiper-slide">
<div class="card series-1">
<span class="card-subtitle">Серия #1</span>
<h2 class="card-title">Начало конца</h2>
</div>
</div>
<div class="swiper-slide">
<div class="card series-2">
<span class="card-subtitle">Серия #2</span>
<h2 class="card-title">Четыре знака</h2>
</div>
</div>
<div class="swiper-slide">
<div class="card series-3">
<span class="card-subtitle">Серия #3</span>
<h2 class="card-title">Пpeдатeльcкая Лунa </h2>
</div>
</div>
</div>
</div>
<!-- If we need navigation buttons -->
<button class="arrow"></button>
</div>
</div>
</div>
</main>
<footer class="footer">
<div class="contaener">
<div class="footer-content">
<div class="left">
<span class="copyright">© 2020 The Witcher. All right reserved.</span>
</div>
<div class="rigft">
<nav class="footer-menu">
<a href="#" class="footer-link">Privacy Policy</a>
<a href="#" class="footer-link">Terms of Service</a>
<a href="#" class="footer-link">Legal</a>
</nav>
</div>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script src="Js/jquery.fancybox.min.js"></script>
<script src="Js/swiper.min.js"></script>
<script src="Js/main.js/main.js"></script>
</body>
</html>