-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (32 loc) · 1.15 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
<!DOCTYPE html>
<html lang="es">
<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">
<link rel="stylesheet" href="./styles/main.css">
<title>My favorite tv shows</title>
</head>
<body class="body">
<header>
<h1 class="title">Buscador de series</h1>
</header>
<main>
<h2 class="header">Encuentra tu serie</h2>
<form class="js-form form">
<input class="js-input input" type="text" name="" id="" placeholder="Escribr aquí el nombre de la serie"
value="">
<input class="js-button searchButton" type="button" value="Search">
</form>
<div class="grid">
<div class="column1">
<h2>Mis series favoritas</h2>
<ul class="js-favorites favoritesContainer"></ul>
<button class="js-reset resetButton">Resetea</button>
</div>
<div class="column2 js-results"></div>
</div>
</main>
<script src="./js/main.js"></script>
</body>
</html>