Files
Vesmir/index.html
T
2026-06-26 12:08:13 +02:00

116 lines
5.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interaktivní průvodce vesmírem | Ročníková práce</title>
<meta name="description" content="Moderní interaktivní prezentace naší sluneční soustavy. Prozkoumejte planety a spočítejte si svou váhu ve vesmíru.">
<meta name="keywords" content="vesmír, planety, sluneční soustava, Mars, vesmírná kalkulačka">
<meta name="author" content="Tomáš Korolus">
<meta name="robots" content="index, follow">
<meta property="og:type" content="website">
<meta property="og:url" content="https://Tomisss1.github.io/Vesmir/">
<meta property="og:title" content="Interaktivní průvodce vesmírem">
<meta property="og:description" content="Prozkoumejte tajemství vesmíru v moderní webové aplikaci postavené na čistých technologiích.">
<meta property="og:image" content="https://Tomisss1.github.io/Vesmir/img/og-preview.jpg">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Interaktivní průvodce vesmírem">
<meta name="twitter:description" content="Prozkoumejte tajemství vesmíru v moderní webové aplikaci.">
<meta name="twitter:image" content="https://Tomisss1.github.io/Vesmir/img/og-preview.jpg">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Interaktivní průvodce vesmírem",
"description": "Vzdělávací webová prezentace o sluneční soustavě.",
"applicationCategory": "EducationalApplication",
"browserRequirements": "Requires HTML5, CSS3, and JavaScript (ES6+)."
}
</script>
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
</head>
<body>
<a href="#hlavni-obsah" class="sr-only-skip">Preskočit na hlavní obsah</a>
<header class="main-header">
<div class="container header-wrapper">
<div class="logo">
<a href="index.html">🌌 VesmírnýPrůvodce</a>
</div>
<nav class="main-nav" aria-label="Hlavní navigace">
<ul>
<li><a href="#domov" class="nav-link active">Domů</a></li>
<li><a href="#encyklopedie" class="nav-link">Encyklopedie</a></li>
<li><a href="#kalkulacka" class="nav-link">Kalkulačka</a></li>
</ul>
</nav>
</div>
</header>
<main id="hlavni-obsah">
<section id="domov" class="hero-section">
<div class="container hero-content">
<h1>Objevte tajemství sluneční soustavy</h1>
<p>Cesta napříč prostorem a časem začíná právě zde. Poznejte planety, jak jste je ještě neviděli.</p>
<a href="#encyklopedie" class="btn btn-primary">Začít průzkum</a>
</div>
</section>
<section id="encyklopedie" class="planets-section">
<div class="container">
<h2>Encyklopedie planet</h2>
<p class="section-subtitle">Vyberte si planetu a zjistěte o ní více informací.</p>
<div class="planets-grid">
<article class="planet-card">
<img src="img/mars.webp" alt="Rudá planeta Mars focená z oběžné dráhy" loading="lazy" width="300" height="300">
<div class="card-body">
<h3>Mars</h3>
<p>Čtvrtá planeta naší soustavy, známá svým načervenalým povrchem plným oxidu železa.</p>
<button class="btn btn-secondary" aria-haspopup="dialog" data-planet="mars">Detail planety</button>
</div>
</article>
</div>
</div>
</section>
<section id="kalkulacka" class="calculator-section">
<div class="container calculator-wrapper">
<h2>Vesmírná váhová kalkulačka</h2>
<p>Zadejte svou váhu na Zemi a zjistěte, kolik byste vážili na jiných tělesech naší soustavy díky odlišné gravitaci.</p>
<div class="calc-form">
<div class="form-group">
<label for="weight-input">Vaše váha na Zemi (v kg):</label>
<input type="number" id="weight-input" min="1" max="500" placeholder="Např. 75" required>
</div>
<button id="calc-btn" class="btn btn-primary">Spočítat gravitaci</button>
</div>
<div id="calc-result" class="calc-result" aria-live="polite">
</div>
</div>
</section>
</main>
<footer class="main-footer">
<div class="container footer-wrapper">
<p>&copy; 2026 Ročníková práce z Webových technologií. Všechna práva vyhrazena.</p>
<p>Vytvořil: Tomáš Korolus (2. ročník)</p>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>