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.
37 lines
1004 B
37 lines
1004 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
.galerie{
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
|
|
gap: 15px;
|
|
width: 100%;
|
|
max-width: 900px;
|
|
}
|
|
.galerie img {
|
|
width: 100%;
|
|
height: 250px;
|
|
object-fit: cover;
|
|
border-radius:10px ;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Random Dog Gallery</h1>
|
|
<p>Klikni na tlačítko a načti náhodné obrázky psů!</p>
|
|
|
|
<div class="ovladani">
|
|
<select name="vyberPlemena" id="vyberPlemena">
|
|
<option value="">Všechna plemena</option>
|
|
</select>
|
|
<button id="btnNacti">Nacti obrázky</button>
|
|
</div>
|
|
<p id="chyba"></p>
|
|
<div class="galerie" id="galerie"></div>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|