-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.62 KB
/
index.html
File metadata and controls
44 lines (44 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Block Buster</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div id="root"></div>
<div id="intersector"></div>
<!-- <header class="header">
<div class="wrapper">
<img src="images/logo.png" alt="blockbuster">
</div>
</header>
<section class="wrapper">
<div class="actions">
<form action="" id="search-form">
<input placeholder="Escribe tu película favorita" name="title" type="Busca una película">
<button>Buscar</button>
</form>
<button id="recommended">Películas recomendadas</button>
<select name="" id="filter">
<option value="all">Todas</option>
<option value="most-valued">Más valoradas</option>
<option value="least-valued">Menos valoradas</option>
</select>
</div>
</section>
<div class="wrapper">
<section class="movie-list" id="container">
<article class="movie recommended">
<img class="movie-poster" src="//image.tmdb.org/t/p/w220_and_h330_face/ugZW8ocsrfgI95pnQ7wrmKDxIe.jpg">
<p class="movie-title">Duro de matar</p>
<p class="movie-id">123456</p>
<span class="movie-rate">10</span>
</article>
</section>
</div> -->
<script type="module" src="src/index.js"></script>
</body>
</html>