-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlevel.html
53 lines (53 loc) · 3.01 KB
/
level.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
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap core CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link href="css/cover.css" rel="stylesheet">
<title>Who's that Digimon?</title>
<link rel="icon" href="img/digivice.png">
<meta name="theme-color" content="#712cf9">
</head>
<body class="text-center bd-placeholder-img">
<!--"AdD YoUr oWn bAcKgRoUnD" they said, "iT'Ll bE EaSy" they said. I've been trying to add that bg for aGES and it shows everything fucking blurred-->
<!--has to be a stupid texture so the text won't blur-->
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="masthead mb-auto">
<div class="inner">
<h3 class="masthead-brand"><img src="img/logo.png" alt="Digimon logo"></h3>
<nav class="nav nav-masthead justify-content-center">
<a class="nav-link" href="index.html">Nombre</a>
<a class="nav-link active" href="level.html">Nivel</a>
<a class="nav-link" href="all.html">Todos</a>
</nav>
</div>
</header>
<main role="main" class="inner cover">
<div class="container my-5">
<h1>Busca tu digimon favorito por niveles</h1>
<div class="form-group">
<label for="digimon-level">Nivel</label>
<input type="text" id="digimon-level" class="form-control"
placeholder="ex: fresh, in training, rookie, champion, mega, armor">
</div>
<button id="buscar" class="btn btn-outline-secondary btn-lg">Buscar</button>
<div id="result-container" class="mt-3"></div>
<!--loco si agrego botones fara filtrar me voy al carajo, lo juro. Responsividad las pelotas-->
</div>
</main>
<!--ORDER IS: ALWAYS GUDDAMN JQUERY, SHTUPID POPPER and then the nice boot strap min dot jay es-->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="js/digimon-level.js"></script> <!--un js aparte porque si no me hago bolita aiura-->
<footer class="mastfoot mt-auto">
<div class="inner">
<p>Brought to you by <a href="https://i.imgflip.com/2asihb.jpg">Issa.</p>
<p>Find me on <a href="https://github.com/mguala">github</a></p>
</div>
</footer>
</div>
</body>
</html>