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.
142 lines
5.7 KiB
142 lines
5.7 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="mt-3 ps-5 border mb-3 rounded text-center border-5 border-primary">
|
|
<h1 class="display-1 ">Hello World</h1>
|
|
<h1 class="lead ">autor: Ahoj světe</h1>
|
|
</div>
|
|
|
|
<p>lorem -> Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia dicta vero delectus repellat quod sequi, labore odit dolores, nesciunt sed cumque aspernatur eos in error optio nam saepe nisi sapiente.</p>
|
|
|
|
<hr>
|
|
|
|
<h2>prace se sloupci?</h2>
|
|
|
|
<div class="row">
|
|
<!-- div.col-md-4*3 -->
|
|
<div class="col-md-4 border border-4 border-primary">HELO</div>
|
|
<div class="col-md-4 border border-4 border-danger">AHOJ</div>
|
|
<div class="col-md-2 border border-4 border-success">OHAYO</div>
|
|
<div class="col-md-2 border border-4 border-info">Guten TAG</div>
|
|
</div>
|
|
<br>
|
|
<div class="row">
|
|
<!-- div.col-md-4*3 -->
|
|
<div class="col-md-10">
|
|
<div class=" border border-4 border-primary p-2">
|
|
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam facilis placeat optio mollitia? Totam, maxime illum saepe, exercitationem ab pariatur reprehenderit reiciendis earum beatae cupiditate repellendus quidem libero corporis iste!
|
|
Aut pariatur obcaecati quo porro excepturi nostrum repudiandae vel cupiditate ullam autem enim eum tempora facere officiis laboriosam fuga, dolore voluptate. Eligendi, recusandae eos vitae harum soluta doloremque dolores rem!
|
|
Numquam officia a debitis pariatur mollitia perspiciatis, cum perferendis at, quisquam aliquid earum natus rem labore enim. Vero excepturi nemo, itaque dolore assumenda similique nisi at nostrum aut quae quos?
|
|
Sed debitis sint omnis quisquam tenetur illum soluta optio magni dicta ex a, earum ab quaerat voluptate sequi eveniet explicabo officiis possimus cupiditate fuga? Laborum repellat explicabo optio veritatis molestias.
|
|
Dolorum deserunt libero enim debitis voluptate, quis eos quam repellat quisquam! Mollitia, perspiciatis distinctio id, beatae quisquam sit repellat possimus nulla nam quos natus quas consequuntur placeat velit voluptates ea.</p>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-2">
|
|
<div class="border border-4 border-info rounded">
|
|
<ul>
|
|
<li>NEJAKY ODKAZ</li>
|
|
<li>NEJAKY ODKAZ</li>
|
|
<li>NEJAKY ODKAZ</li>
|
|
<li>NEJAKY ODKAZ</li>
|
|
<li>NEJAKY ODKAZ</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<form method="get" class="mb-5">
|
|
<div class="mb-3 mt-3">
|
|
<label for="email" class="form-label">Email:</label>
|
|
<div class="input-group">
|
|
<input type="text" class="form-control" placeholder="Your Email name">
|
|
<span class="input-group-text">@</span>
|
|
<input type="text" class="form-control" placeholder="email domain e.g. gmail.com, yahoo.com">
|
|
</div>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="pwd" class="form-label">Password:</label>
|
|
<input type="password" class="form-control" id="pwd" placeholder="Enter password" name="pswd">
|
|
</div>
|
|
<div class="form-check mb-3">
|
|
<label class="form-check-label">
|
|
<input class="form-check-input" type="checkbox" name="remember"> Remember me
|
|
</label>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Submit</button>
|
|
</form>
|
|
|
|
<hr>
|
|
|
|
<h1>Tabulky</h1>
|
|
<h4>tabulka bez formatu</h4>
|
|
<table class="">
|
|
<thead>
|
|
<tr>
|
|
<th>Firstname</th>
|
|
<th>Lastname</th>
|
|
<th>Email</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>John</td>
|
|
<td>Doe</td>
|
|
<td>john@example.com</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Mary</td>
|
|
<td>Moe</td>
|
|
<td>mary@example.com</td>
|
|
</tr>
|
|
<tr>
|
|
<td>July</td>
|
|
<td>Dooley</td>
|
|
<td>july@example.com</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<h4 class="mt-4"> tabulka s formatem</h4>
|
|
<table class="table table-hover table-striped table-primary">
|
|
<thead class="table-danger">
|
|
<tr>
|
|
<th>Firstname</th>
|
|
<th>Lastname</th>
|
|
<th>Email</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>John</td>
|
|
<td>Doe</td>
|
|
<td>john@example.com</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Mary</td>
|
|
<td>Moe</td>
|
|
<td>mary@example.com</td>
|
|
</tr>
|
|
<tr class="table-success">
|
|
<td>July</td>
|
|
<td>Dooley</td>
|
|
<td>july@example.com</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
</div>
|
|
<div class="my-5"> end </div>
|
|
<script src="js/bootstrap.bundle.js"></script>
|
|
</body>
|
|
</html>
|