-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeatres.html
58 lines (58 loc) · 2.82 KB
/
theatres.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="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Знаменитые театры</title>
<link rel="icon" href="./img/mask_icon.svg" type="image/svg+xml">
<link rel="stylesheet" href="style_header.css">
<link rel="stylesheet" href="style_init.css">
</head>
<body>
<header>
<h1 style="margin-bottom: 35px;"></h1>
<div class="menu_icon">
<button class="button_icon">
<span class="icon top"></span>
<span class="icon middle"></span>
<span class="icon bottom"></span>
</button>
</div>
<ul class="menu">
<li><a href="./index.html">Главное</a></li>
<li><a href="./theatres.html">Театры</a></li>
<li><a href="./ballet.html">Балет</a></li>
<li><a href="./musicals.html">Мюзиклы</a></li>
<li><a href="./plays.html">Пьесы</a></li>
</ul>
</header>
<h2>Знаменитые театры мира</h2>
<main class="theatres">
<div class="image_block">
<a target="_blank" href="https://www.bolshoi.ru/"><img src="./img/bolshoy-1.jpg" width="100%" alt=""></a>
<p>Государственный академический Большой театр России (ГАБТ), или Большой театр, Москва</p>
</div>
<div class="image_block">
<a target="_blank" href="https://www.sydneyoperahouse.com/insiders.html"><img src="./img/sidney-2.jpg" width="100%" alt=""></a>
<p>Сиднейский оперный театр, Сидней</p>
</div>
<div class="image_block">
<a target="_blank" href="https://www.wiener-staatsoper.at/"><img src="./img/venn-opera-2.jpg" width="100%" alt=""></a>
<p>Венская государственная опера, Вена</p>
</div>
<div class="image_block">
<a target="_blank" href="https://www.operadeparis.fr/"><img src="./img/paris-opera-1.jpg" width="100%" alt=""></a>
<p>Парижская опера, или Гранд-опера, или Опера Гарнье, Париж</p>
</div>
<div class="image_block">
<a target="_blank" href="https://www.mariinsky.ru/"><img src="./img/mariin-1.jpg" width="100%" alt=""></a>
<p>Государственный академический Мариинский театр, Санкт-Петербург</p>
</div>
</main>
<footer>
<div class="fclick">Выключить свет</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="index.js"></script>
</body>
</html>