-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Cinema Movies</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="index.css" />
<script src="index.js"></script>
</head>
<body>
<div id="pageDiv">
<h1><a href="#">Movies in Prague</a></h1>
<p id="creditsP">
Made by
<img src="https://hubelbauer.net/favicon.ico" height="16" />
<a href="https://hubelbauer.net" target="_blank">Tomas Hubelbauer</a>
.
<a href="docs">New version</a>
</p>
<div id="cinemasDiv"></div>
<div id="moviesDiv"></div>
</div>
<div id="popupDiv">
<div>
<img />
<h2></h2>
<div id="contentDiv"></div>
<div id="tagDiv"></div>
<iframe id="trailerIframe" width="560" height="315" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<div id="screeningsDiv"></div>
</div>
</div>
</body>
</html>