-
Notifications
You must be signed in to change notification settings - Fork 0
/
rating.html
136 lines (114 loc) · 3.93 KB
/
rating.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<meta name='description' content="Киномонстр-это портал о кино">
<meta name="keywords" content="фильмы,фильмы онлайн,hd" />
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div class='main'>
<div class="header">
<div class="logo">
<div class="logo_text">
<h1><a href="index.html">КиноМонстр</a></h1>
<h2>Кино - наша страсть!</h2>
</div>
</div>
<div class="menubar">
<ul class="menu">
<li><a href="index.html">Главная</a></li>
<li><a href="films.html">Фильмы</a></li>
<li><a href="#">Сериалы</a></li>
<li class="selected"><a href="rating.html">Рейтинг фильмов</a></li>
<li><a href="contact.html">Контакты</a></li>
</ul>
</div>
</div>
<div class="side_content">
<div class="sidebar_container">
<div class="sidebar">
<h2>Поиск</h2>
<form method="post" action="#" id="search_form">
<input type="search" name="search_field" placeholder="ваш запрос" />
<input type="submit" class="btn" value="найти" />
</form>
</div>
<div class="sidebar">
<h2>Вход</h2>
<form method="post" action="#" id="login">
<input type="text" name="login_field" placeholder=" логин" />
<input type="password" name="password_field" placeholder=" пароль" />
<input type="submit" class ="btn" value="вход" />
<div class="lables_passreg_text">
<span><a href="#">забыли пароль?</a></span> | <span><a href="">регистрация</a></span>
</div>
</form>
</div>
<div class="sidebar">
<h2>Новости</h2>
<span>31.02.2018</span>
<p>Мы запустили расширенный поиск</p>
<a href="#">читать</a>
</div>
<div class="sidebar">
<h2>Рейтинг фильмов</h2>
<ul>
<li><a href="show.html">Интерстелларс</a><span class="rating_sidebar">8.1</span></li>
<li><a href="#">Матрица</a><span class="rating_sidebar">8.0</span></li>
<li><a href="#">Безумный макс</a><span class="rating_sidebar">7.5</span></li>
<li><a href="#">Облачный атлас</a><span class="rating_sidebar">7.4</span></li>
</ul>
</div>
</div>
<div class="content">
<table>
<tr>
<th></th>
<th>Фильмы</th>
<th class="center">Год</th>
<th class="center">Рейтинг</th>
</tr>
<tr>
<td class="center"><img src="assets/img/inter.png"></td>
<td>1. <a href="show.html">Интерстеллар</a></td>
<td class="center">2014</td>
<td class="center rating">8.1</td>
</tr>
<tr>
<td class="center"><img src="assets/img/matrix.png"></td>
<td>1. <a href="#">Матрица</a></td>
<td class="center">1999</td>
<td class="center rating">8.0</td>
</tr>
<tr>
<td class="center"><img src="assets/img/max.png"></td>
<td>1. <a href="#">Безумный макс</a></td>
<td class="center">2015</td>
<td class="center rating">7.5</td>
</tr>
<tr>
<td class="center"><img src="assets/img/cloud.png"></td>
<td>1. <a href="#">Облачный атлас</a></td>
<td class="center">2013</td>
<td class="center rating">7.4</td>
</tr>
</table>
</div>
</div>
</div>
<div class="footer">
<p>
<a href="index.html">Главная</a> |
<a href="films.html">Фильмы</a> |
<a href="#">Сериалы</a> |
<a href="rating.html">Рейтинг фильмов</a> |
<a href="contact.html">Контакты</a>
</p>
<p>wh-db.com 2015</p>
</div>
</div>
</body>
</html>