-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 1.42 KB
/
Copy pathindex.html
File metadata and controls
43 lines (40 loc) · 1.42 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/static/css/style.css">
<title>Rick and Morty</title>
</head>
<body>
<h1>Rick and Morty</h1>
<div class="container" id="container">
<!-- <div class="character">
<img src="https://rickandmortyapi.com/api/character/avatar/1.jpeg" alt="">
<div class="container-name">
<h2>Nombre</h2>
<p>Especie</p>
<p>Genero</p>
<p>Estatus</p>
<p>Tipo</p>
<p>Planeta</p>
<p>Dimension</p>
</div>
</div> -->
<!-- <div class="character">
<img src="${data.results[i].image}" alt="">
<div class="container-name">
<h2>${data.results[i].name}</h2>
</div>
<p>${data.results[i].species}</p>
<p>${data.results[i].gender}</p>
<p>${data.results[i].status}</p>
<p>${data.results[i].type}</p>
<p>${data.results[i].origin.name}</p>
<p>${dimensions.results[i].dimension}</p>
</div> -->
</div>
<script type="module" src="/static/js/index.js"></script>
</body>
</html>