-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (59 loc) · 3.42 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
<!DOCTYPE html>
<html lang="en">
<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>Proyecto Final</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="bg">
<div class="container">
<!-- hiding header with class d-none -->
<header class="d-flex justify-content-center py-3 d-none">
<ul class="nav nav-pills">
<li class="nav-item"><a href="#" class="nav-link active" aria-current="page">Home</a></li>
<li class="nav-item"><a href="#" class="nav-link">FAQs</a></li>
<li class="nav-item"><a href="#" class="nav-link">About</a></li>
</ul>
</header>
</div>
<div class="px-4 py-5 m0 text-center" style="display: flex;
flex-direction: column;
height: calc(100vh - 71.962px);
justify-content: center;" >
<img class="d-block mx-auto mb-4" src="./Assets/Teemo Mushroom.jpg" alt="" width="72" height="57">
<h1 class="display-5 fw-bold">Cual es tu Rango</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">Ingresa el nombre de invocador y sabrás el rango actual del jugador en Clasificatoria Solo/Duo de <strong>League Of Legends</strong>. Sólo compatible con jugadores pertenecientes al servidor de LAS</p>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<div class="input-group mb-3">
<input type="text" id="myText" class="form-control" placeholder="One Bullet" aria-label="Username" aria-describedby="basic-addon1" value='' >
<button type="button" class="btn btn-primary" id="myButton">Buscar</button>
</div>
</div>
<button type="button" class="btn btn-primary" id="randBtn">Generar Usuario Aleatorio</button>
<div class="lastSearch" id="busqueda"></div>
<!-- Button trigger modal -->
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header sacar">
<h1 class="modal-title fs-5" id="exampleModalLabel">Rango</h1>
<button type="button" class="btn-close " data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="" id="tierImage" class="imagen"/>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.min.js" integrity="sha384-mQ93GR66B00ZXjt0YO5KlohRA5SY2XofN4zfuZxLkoj1gXtW8ANNCe9d5Y3eG5eD" crossorigin="anonymous"></script>
<script src="./index.js"></script>
</body>
</html>