-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.22 KB
/
index.html
File metadata and controls
41 lines (41 loc) · 1.22 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/styles.css" />
<title>Dragon Ball</title>
</head>
<body>
<header class="header">
<button class="btn_prev" id="btn_prev">Prev. page</button>
<div class="container_logo">
<img src="./assets/img/dragon-ball-z.png" class="img_logo" />
</div>
<div class="searcher">
<h1>Buscador Dragon Ball</h1>
<input
id="searchInput"
class="searchInput"
type="text"
placeholder="Buscar personaje..."
/>
</div>
<div class="container_logo">
<img src="./assets/img/dragon-ball-z.png" class="img_logo" />
</div>
<button class="btn_next" id="btn_next">Next. page</button>
</header>
<main>
<section id="characters" class="characters"></section>
<a href="./favorites.html" id="btn_favorites" class="btn_favorites">
<img
src="./assets/img/favorites.png"
alt="Ir a favoritos"
class="img_favorites"
/>
</a>
</main>
<script src="./js/script.js"></script>
</body>
</html>