-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (55 loc) · 2.3 KB
/
Copy pathindex.html
File metadata and controls
63 lines (55 loc) · 2.3 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
<!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">
<title>Learn JavaScript</title>
<link rel="stylesheet" type="text/css" href="./css/bootstrap.min.css">
</head>
<body class="m-0 bg-light">
<main class="container">
<h2 class="text-center">RICK & MORTY</h2>
<p class="text-center">Lorem ipsum dolor sit amet consectetur adipisicing elit. Ea et beatae dolor temporibus
consequuntur eos laudantium quidem dolores facilis? Sit.
</p>
<form id="formulario" required>
<select type="form-select" class="form-select" aria-label="Default select example">
<option value="1">Personajes vivos</option>
<option value="2">Personajes muertos</option>
<option value="3">Personajes unknown</option>
</select>
<div class="d-flex justify-content-center my-3">
<button type="submit" class="btn btn-primary">Clasificar</button>
</div>
</form>
</main>
<div class="spinner-border d-none" role="status">
<!-- cargando datos -->
<span class="visually-hidden">Loading...</span>
</div>
<div class="container-fluid">
<h3 class="title text-center d-none">Personajes vivos</h3>
<article id="card-dinamica"
class="container-fluid mb-3 d-flex align-content-between flex-wrap justify-content-center">
</article>
</div>
<h3 class="text-center text-primary">JEFFERSON DAVID ☕</h3>
<template class="card-template">
<div class="card mx-2 my-1 ">
<img src="https://indiehoy.com/wp-content/uploads/2022/08/rick-and-morty-1200x900.jpg" alt="rick"
class="center img-fluid">
<div class="body">
<h5 class="text-center name">Nombre</h5>
<h6 class="text-center species">Humano / Alien</h6>
<p class="text-center status">Status</p>
<h6 class="text-center location">Location
</h6>
</div>
</div>
</template>
<script src="index.js"></script>
<!-- <script src="./js/bootstrap.bundle.min.js"></script> -->
</script>
</body>
</html>