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.
47 lines
1.8 KiB
47 lines
1.8 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Document</title>
|
|
<!-- Vložený bootstraap 5.0.2 -->
|
|
<link rel="stylesheet" href="css/bootstrap.css">
|
|
<!-- Vložený CDN pro Bootstrap icony -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css">
|
|
</head>
|
|
<body class="d-flex flex-column min-vh-100">
|
|
<!-- pripravená navigační lišta -->
|
|
<div class="container">
|
|
<header class="d-flex flex-wrap justify-content-center py-3 mb-4 border-bottom">
|
|
<a href="/" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto text-dark text-decoration-none">
|
|
<!-- V názvu využit <i> s třídama od knihovny Bootstrap Icons -->
|
|
<span class="fs-4">Name <i class="bi bi-arrow-down-circle"></i></span>
|
|
</a>
|
|
<ul class="nav nav-pills">
|
|
<li class="nav-item"><a href="#" class="nav-link active" aria-current="page">Link 1</a></li>
|
|
<li class="nav-item"><a href="#" class="nav-link">Link 2</a></li>
|
|
<li class="nav-item"><a href="#" class="nav-link">Link 3</a></li>
|
|
</ul>
|
|
</header>
|
|
</div>
|
|
<!-- HLAVNÍ ČÁST KÓDU -->
|
|
<main class="container">
|
|
Main
|
|
|
|
</main>
|
|
|
|
|
|
<!-- Footer - zakončení stránky -->
|
|
<footer class="footer mt-auto">
|
|
<div class="nav justify-content-center py-2 mb-3">
|
|
<!-- Využité icony z knihovny Bootstrap Icons -->
|
|
<i class="bi bi-text-left"></i> Footer <i class="bi bi-text-right"></i>
|
|
</div>
|
|
</footer>
|
|
|
|
|
|
|
|
<script src="js/bootstrap.bundle.js"></script>
|
|
</body>
|
|
</html>
|