Malý repozitář pro WTL 3.I 2025/2026
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

31 lines
1.0 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/bootstrap.css">
</head>
<body>
<div class="container">
<div class="card shadow-sm">
<div class="card-body">
<h3 class="mb-4">Pokémon vyhledáváč</h3>
<p class="text-muted">Procvičení metod .filter() a .map()</p>
<input type="text" id="search" class="form-control form-control-lg"
placeholder="Začni psát jméno (např. Pika...)">
<div>
<h5>výsledky:</h5>
<ul id="results" class="list-group">
<li class="list-group-item text-muted">Zatím nic nehledáš...</li>
</ul>
</div>
</div>
</div>
</div>
<script src="js/bootstrap.bundle.js"></script>
<script src="script_api.js"></script>
</body>
</html>