-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
53 lines (49 loc) · 2.31 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
<html lang="pt">
<head>
<link rel="stylesheet" href="./styles/global.css">
<link rel="stylesheet" href="./styles/home/main.css">
<link rel="stylesheet" media="screen and (min-width: 1024px)" href="./styles/home/widescreen.css">
<link rel="stylesheet" media="screen and (min-width: 470px) and (max-width: 1023px)"
href="./styles/home/mediumscreen.css">
<link rel="stylesheet" media="screen and (min-width: 320px) and (max-width: 469px)"
href="./styles/home/smallscreen.css">
</head>
<body>
<main>
<section id="section1"></section>
<section id="section2">
<div id="section-container">
<h2>Últimas</h2>
<div id="section2-main-container"></div>
</div>
</section>
<section id="section3">
<div id="section-container">
<h2>Trailers mais assistidos</h2>
<div id="trailers-container">
<iframe class="video-frame" width="960" height="480" src="https://www.youtube.com/embed/tJt2MS53cdM" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<iframe class="video-frame" width="960" height="480" src="https://www.youtube.com/embed/77fe8sHFG6M" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<iframe class="video-frame" width="960" height="480" src="https://www.youtube.com/embed/uNAxHLp7wv8" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<iframe class="video-frame" width="960" height="480" src="https://www.youtube.com/embed/NnDGWyfP7q4" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
</div>
</section>
</main>
</body>
<script src="/scripts/home.js"></script>
<script src="/scripts/head.js"></script>
<script src="/scripts/nav.js"></script>
<script src="/scripts/footer.js"></script>
</html>