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.
20 lines
560 B
20 lines
560 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>OpenWeatherMap</title>
|
|
</head>
|
|
<body>
|
|
<h1>Aplikace na pocasi z OpenWeatherMap</h1>
|
|
<p>Zadej název města a zjisti aktuální počasí</p>
|
|
|
|
<input type="text" id="mestoInput" placeholder="Název Města (např. Praha)">
|
|
<button id="btnHledej">Hledat infomrace o počasí</button>
|
|
|
|
<div id="chyba"></div>
|
|
<div id="vysledek"></div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|