-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (101 loc) · 3.5 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./css/global.css" />
<link rel="shortcut icon" href="./assets/icons/icons8-rick-sanchez.svg">
<title>Rick and Morthy</title>
</head>
<body>
<header class="p-3 bg-dark text-white">
<div class="container">
<div
class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start"
>
<a
href="/"
class="d-flex align-items-center mb-2 mb-lg-0 text-white text-decoration-none"
>
<img
src="./assets/icons/icons8-morty-smith.svg"
alt=""
class="header-logo"
/>
<img
src="./assets/icons/icons8-rick-sanchez.svg"
alt=""
class="header-logo"
/>
</a>
<p class="fs-2 align-middle text-success">Rick And Morty</p>
<ul
class="nav col-12 col-lg-auto me-lg-auto mb-2 mb-md-0 m-auto"
>
<li>
<button
id="characters-button"
class="btn btn-link px-2 text-white fs-4"
>
Characters
</button>
</li>
<li>
<button
id="locations-button"
class="btn btn-link px-2 text-white fs-4"
>
Locations
</button>
</li>
<li>
<button
id="episodes-button"
class="btn btn-link px-2 text-white fs-4"
>
Episodes
</button>
</li>
</ul>
<form class="col-12 col-lg-auto mb-3 mb-lg-0 me-lg-3">
<input
type="text"
class="form-control form-control-dark"
placeholder="Search..."
id="mySearch"
/>
</form>
</div>
</div>
</header>
<main class="text-center py-5">
<h1 class="display-5 fw-bold">Rick and Morty Characters</h1>
<div id="display-content"></div>
</main>
<div class="bg-dark text-white">
<footer class="pt-4 pb-2 container">
<div class="text-center text-muted border-bottom pb-3 mb-3">
<p>Pagina desarrollada para programacion IV</p>
</div>
<p class="text-center text-muted">© 2022 Angel Aguilar, UNIMAR</p>
</footer>
</div>
<script type="module" src="./packages/features/useCharacters.js"></script>
<script type="module" src="./packages/features/useEpisodes.js"></script>
<script type="module" src="./packages/features/useLocations.js"></script>
<script type="module" src="./packages//utils/search.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
</body>
</html>