forked from rodrigocborges/rodrigocborges.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
filmes.html
27 lines (23 loc) · 948 Bytes
/
filmes.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
<html lang="pt">
<head>
<link rel="stylesheet" href="./styles/global.css">
<link rel="stylesheet" href="./styles/movies-tvshows/main.css">
<link rel="stylesheet" media="screen and (min-width: 320px) and (max-width: 729px)" href="./styles/movies-tvshows/smallscreen.css">
</head>
<body>
<main>
<section class="buttons-section">
<h1>Sem idéias para filme? Escolha uma categoria e nós te indicamos as melhores opções</h1>
<div>
<button type="button" id="btn1" onclick="upcomingClick()">Próximos filmes</button>
<button type="button" id="btn2" onclick="popularClick()">Mais populares</button>
</div>
</section>
<section class="content-section"></section>
</main>
</body>
<script src="/scripts/head.js"></script>
<script src="/scripts/nav.js"></script>
<script src="/scripts/footer.js"></script>
<script src="/scripts/movies.js"></script>
</html>