Webshop/public/startseite/startseite.html
2025-04-11 08:55:48 +02:00

114 lines
4.6 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Autohändler Webshop</title>
<link rel="stylesheet" href="./Styles/startseite/startseite.css">
<link href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" rel="stylesheet">
</head>
<body>
<!-- Wrapper für die gesamte Seite -->
<div class="wrapper">
<!-- Header -->
<header>
<h1>Autohändler Webshop</h1>
<div class="header-right">
<a href="/login" class="login-btn">Login</a>
<div class="cart">
<i class='bx bx-cart'></i>
<span class="cart-count">0</span>
</div>
</div>
</header>
<!-- Navigationsleiste -->
<nav class="menu">
<ul class="menu-list">
<li class="menu-item">
<a href="/">Startseite</a>
</li>
<li class="menu-item">
<a href="#">Shop</a>
<ul class="submenu">
<li><a href="/shop/oldtimer">Oldtimer</a></li>
<li><a href="/shop/sportwagen">Sportwagen</a></li>
<li><a href="/shop/lkw">LKWs</a></li>
</ul>
</li>
<li class="menu-item">
<a href="#">Über uns</a>
</li>
<li class="menu-item">
<a href="#">Kontakt</a>
</li>
</ul>
</nav>
<!-- Infobereich -->
<section style="padding: 40px 20px; text-align: center; background: #fff;">
<h2>Willkommen bei deinem Modellauto-Shop</h2>
<p>Bei uns findest du hochwertige Modellautos ob Oldtimer, Sportwagen oder Nutzfahrzeuge.
Perfekt für Sammler, Bastler und Fans.</p>
</section>
<!-- Hauptinhalt -->
<h1>Unsere Angebote</h1>
<main>
<section class="card-grid">
<div class="card">
<img src="https://shop.porsche.com/_next/image?url=https%3A%2F%2Fassets-prod.porsche.com%2Fassets%2Fce81555c-4f59-485e-9f9b-7a448a4d91b3.webp&w=2560&q=75" alt="Porsche">
<h3>Name des Produktes</h3>
<p>Preis: 23€</p>
<p>weitere Infos</p>
<button class="add-to-cart">Zum Warenkorb hinzufügen</button>
</div>
<div class="card">
<img src="https://www.modellautocenter.de/media/image/product/23241/md/avia-a31n-pritsche-mit-plane-blau-modellauto-143-premium-classixxs.jpg" alt="LKW">
<h3>Avia A31N Pritsche mit Plane blau Modellauto 1:43 Premium ClassiXXs</h3>
<p>Preis: 74,99€</p>
<p>Modellauto / Premium ClassiXXs 1:43
Avia A31N Pritsche mit Plane, fertiges Modellauto aus Die-Cast (Metall)</p>
<button class="add-to-cart">Zum Warenkorb hinzufügen</button>
</div>
</section>
</main>
<!-- Info-Sektion: Versand, Zahlung, Rückgabe -->
<section style="background: #ffffff; padding: 40px 20px; display: flex; flex-wrap: wrap; justify-content: space-around; gap: 30px; text-align: center;">
<div style="flex: 1 1 250px;">
<i class='bx bx-package' style="font-size: 40px; color: #ff6600;"></i>
<h3>Versandkostenfrei ab 50</h3>
<p>Schneller & sicherer Versand mit Sendungsverfolgung.</p>
</div>
<div style="flex: 1 1 250px;">
<i class='bx bx-credit-card' style="font-size: 40px; color: #ff6600;"></i>
<h3>Flexible Zahlungsmethoden</h3>
<p>PayPal, Kreditkarte, Klarna, Vorkasse du hast die Wahl.</p>
</div>
<div style="flex: 1 1 250px;">
<i class='bx bx-undo' style="font-size: 40px; color: #ff6600;"></i>
<h3>14 Tage Rückgaberecht</h3>
<p>Unzufrieden? Kein Problem Rückgabe einfach & unkompliziert.</p>
</div>
<div style="flex: 1 1 250px;">
<i class='bx bx-star' style="font-size: 40px; color: #ff6600;"></i>
<h3>Top-Bewertungen</h3>
<p>Unsere Kunden lieben uns überzeug dich selbst!</p>
</div>
</section>
<footer style="background: #222; color: #fff; padding: 30px 20px; text-align: center; margin-top: 40px;">
<p>&copy; 2025 Autohändler Webshop Alle Rechte vorbehalten</p>
<p><a href="/impressum" style="color: #ff6600; text-decoration: none;">Impressum</a> |
<a href="/datenschutz" style="color: #ff6600; text-decoration: none;">Datenschutz</a></p>
</footer>
</div>
<!-- Scripts -->
<script src="startseite.js"></script>
</body>
</html>