-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (70 loc) · 2.55 KB
/
index.html
File metadata and controls
71 lines (70 loc) · 2.55 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
property="og:image"
content="https://block-buster-psdo-react.vercel.app/images/blockbuster-pseudo-react-vanilla-js.jpg"
/>
<meta
property="og:image:secure_url"
content="https://block-buster-psdo-react.vercel.app/images/blockbuster-pseudo-react-vanilla-js.jpg"
/>
<meta property="og:image:type" content="image/jpeg" />
<meta property="og:image:width" content="600" />
<meta property="og:image:height" content="330" />
<meta property="og:image:alt" content="BlockBuster - Pseudo React JS" />
<title>BlockBuster - Pseudo React JS</title>
<meta
name="description"
content="#Proyect #VANILLA-REACT #TMDB-API #JS #HTML #CSS #API"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@giovanniivolta" />
<meta name="twitter:title" content="BlockBuster - Pseudo React JS" />
<meta
name="twitter:description"
content="#Proyect #VANILLA-REACT #TMDB-API #JS #HTML #CSS #API"
/>
<meta
name="twitter:image"
content="https://block-buster-psdo-react.vercel.app/images/blockbuster-pseudo-react-vanilla-js.jpg"
/>
<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="">
</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 pelicula" />
<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" alt="">
<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>