<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Geschäftliche Webseite</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f7f7f7;
color: #000;
}
header {
background-color: #FFD700;
color: #000;
padding: 20px;
text-align: center;
}
nav {
background-color: #000;
padding: 10px;
text-align: center;
}
nav a {
color: #FFD700;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
section {
padding: 20px;
}
footer {
background-color: #000;
color: #FFD700;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
.shop-item {
border: 1px solid #ccc;
margin: 15px;
padding: 15px;
border-radius: 8px;
background-color: #fff;
}
</style>
</head>
<body>
<header>
<h1>Willkommen auf unserer Webseite</h1>
</header>
<nav>
<a href="#start">Startseite</a>
<a href="#shop">Shop</a>
<a href="#kontakt">Kontakt</a>
</nav>
<section id="start">
<h2>Über uns</h2>
<p>Willkommen auf unserer geschäftlichen Webseite. Hier finden Sie Informationen über unsere Produkte und Dienstleistungen.</p>
<img src="beispielbild.jpg" alt="Beispielbild" style="max-width: 100%; height: auto;">
<video controls style="width: 100%; max-width: 600px;">
<source src="beispielvideo.mp4" type="video/mp4">
Ihr Browser unterstützt kein HTML5-Video.
</video>
</section>
<section id="shop">
<h2>Shop</h2>
<div class="shop-item">
<h3>Produkt 1</h3>
<p>Beschreibung des Produkts 1</p>
<button>Kaufen</button>
</div>
<div class="shop-item">
<h3>Produkt 2</h3>
<p>Beschreibung des Produkts 2</p>
<button>Kaufen</button>
</div>
</section>
<section id="kontakt">
<h2>Kontakt</h2>
<form action="/kontakt" method="post">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name" required><br>
<label for="email">E-Mail:</label><br>
<input type="email" id="email" name="email" required><br>
<label for="message">Nachricht:</label><br>
<textarea id="message" name="message" rows="4" required></textarea><br>
<button type="submit">Senden</button>
</form>
</section>
<footer>
<p>© 2025 Dein Geschäft</p>
</footer>
</body>
</html>