-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDisney.php
More file actions
81 lines (70 loc) · 3.03 KB
/
Disney.php
File metadata and controls
81 lines (70 loc) · 3.03 KB
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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<title>yurets</title>
<link rel="stylesheet" href="Disney/Disney.css">
</head>
<body id ="bodycolor">
<ul class="topnav" id="myTopnav">
<li><a href="mi.php" class="active">  Home  </a></li>
<li><a href="" >  News  </a></li>
<li><a href="feedback.php" >Contacts</a></li>
<li><a href="index.php" >General</a></li>
<li class="icon"><a href="javascript:void(0);" style="font-size:15px;" onclick="myFunction()" >☰</a></li>
</ul>
<div id="informationAboutFilms">
<div id="BlockFoto"><img class="img" style="cursor:pointer" src="Disney/img/coldHard.jpg"> </div>
<div id="BlockInformation">
<p>Название: Холодное сердце</p>
<p>Оригинальное название: Frozen</p>
<p>Год: 2013</p>
<p>Страна: США</p>
<p>Слоган: «From the creators of 'Tangled' and 'Wreck-It Ralph'...»</p>
<p>Режиссер: Крис Бак, Дженнифер Ли</p>
<p>Жанр: Мультфильмы</p>
</div>
</div>
<div id="informationAboutFilms">
<div id="BlockFoto"><img class="img" style="cursor:pointer" src="Disney/img/Ledi.jpg"> </div>
<div id="BlockInformation">
<p>Название: Леди и бродяга</p>
<p>Оригинальное название: Lady and the Tramp</p>
<p>Год: 1955</p>
<p>Страна: США</p>
<p>Слоган: «The most delightful characters in a dog's age!»</p>
<p>Режиссер: Клайд Джероними, Уилфред Джексон, Хэмильтон Ласки</p>
<p>Жанр: Мультфильмы</p></div>
</div>
<div id="informationAboutFilms">
<div id="BlockFoto"><img class="img" style="cursor:pointer" src="Disney/img/coldHard.jpg"> </div>
<div id="BlockInformation"> </div>
</div>
<div id="informationAboutFilms">
<div id="BlockFoto"><img class="img" style="cursor:pointer" src="Disney/img/coldHard.jpg"> </div>
<div id="BlockInformation"> </div>
</div>
<footer>
<span class="left"> Все права защищены © 2017</span>
<span class="right">социальные кнопки<img src=" " alt=" Facebook" title=" Facebook"</span>
</footer>
<script src="script1.js"></script>
<script src="java.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(window).bind("resize", resizeWindow);
function resizeWindow(e){
var newWindowWidth = $(window).width();
// If width width is below 700px, switch to the mobile stylesheet
if(newWindowWidth < 850){
$("link[rel=stylesheet]").attr({href : "Universal/Universalmobile.css"});
} else if(newWindowWidth > 850){
// Else if width is above 600px, switch to the large stylesheet
$("link[rel=stylesheet]").attr({href : "Disney/Disney.css"});
}
}
});
</script>
</body>
</html>