Skip to content

Instantly share code, notes, and snippets.

@hanzelkatomas
Created December 7, 2023 21:04
Show Gist options
  • Save hanzelkatomas/f1d273067991b0856d17bcb607aedb54 to your computer and use it in GitHub Desktop.
Save hanzelkatomas/f1d273067991b0856d17bcb607aedb54 to your computer and use it in GitHub Desktop.
HTML webovka - úkol opakování CSS
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Basic HTML Website</title>
</head>
<body>
<h1>Welcome to My Website</h1>
<nav>
<ul>
<li>Home</li>
<li>About</li>
</ul>
</nav>
<div>
<h2>About Us</h2>
<p>This is a sample website that <span>demonstrates</span> various HTML <span>elements</span>.</p>
</div>
<h2>Image</h2>
<img src="https://picsum.photos/536/354" alt="Sample Image">
<h2>Table</h2>
<table>
<tr>
<th>Product</th>
<th>Price</th>
</tr>
<tr>
<td>Product 1</td>
<td>$10.00</td>
</tr>
<tr>
<td>Product 2</td>
<td>$15.00</td>
</tr>
</table>
<h2>Form</h2>
<form action="submit.php" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required><br>
<label for="file">Upload File:</label>
<input type="file" id="file" name="file"><br>
<label for="date">Date:</label>
<input type="date" id="date" name="date"><br>
<label for="product">Select a Product:</label>
<select id="product" name="product">
<option value="product1">Product 1</option>
<option value="product2">Product 2</option>
</select><br>
<button type="submit">Submit</button>
</form>
<h2>Media</h2>
<video controls height="200">
<source src="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" type="video/mp4">
</video>
<br>
<hr>
<h2>Contact Us</h2>
<span>Email: contact@example.com</span><br>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment