67 lines
2.8 KiB
HTML
67 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>Social Cooking Wireframe</title>
|
||
<link rel="stylesheet" href="stylesheet.css" />
|
||
</head>
|
||
<body>
|
||
<div class="page-wrapper">
|
||
<header class="header" aria-label="Hauptnavigation">
|
||
<div class="header__brand" aria-label="Logo Platzhalter">LOGO</div>
|
||
<nav class="nav" aria-label="Seitennavigation">
|
||
<a class="nav__link" href="#" role="link">Event finden</a>
|
||
</nav>
|
||
<button class="btn btn--outline header__login" aria-label="Login" type="button">Login</button>
|
||
</header>
|
||
|
||
<main class="main-content">
|
||
<section class="hero" aria-labelledby="hero-title">
|
||
<div class="hero__left">
|
||
<h1 class="hero__title" id="hero-title">Zu Tisch mit Fremden – bereit für die nächste kulinarische Begegnung?</h1>
|
||
<p class="hero__description">Dein Ort um neue Leute kennen zu lernen! Erstelle eigene Events und lade Gäste zu dir nach Hause ein, oder suche nach passenden Events in deiner Umgebung.</p>
|
||
<button class="btn btn--primary" aria-label="Anmelden" type="button">Anmelden</button>
|
||
</div>
|
||
|
||
<div class="hero__right">
|
||
<div class="image-card" aria-label="Hero Bild Platzhalter">
|
||
<div class="image-card__placeholder" aria-hidden="true"></div>
|
||
<div class="social-badge" aria-label="Social Badge mit Teilnehmern">
|
||
<span class="social-badge__dot"></span>
|
||
<span class="social-badge__dot"></span>
|
||
<span class="social-badge__dot"></span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="gallery" aria-label="Galerie mit Platzhaltern">
|
||
<div class="gallery__controls">
|
||
<button class="arrow arrow--prev" type="button" aria-label="Vorheriges Bild"><</button>
|
||
<button class="arrow arrow--next" type="button" aria-label="Nächstes Bild">></button>
|
||
</div>
|
||
|
||
<div class="gallery__track">
|
||
<article class="gallery__item" data-index="0" aria-label="Galerie Element 1">
|
||
<div class="placeholder"></div>
|
||
</article>
|
||
<article class="gallery__item" data-index="1" aria-label="Galerie Element 2">
|
||
<div class="placeholder"></div>
|
||
</article>
|
||
<article class="gallery__item" data-index="2" aria-label="Galerie Element 3">
|
||
<div class="placeholder"></div>
|
||
</article>
|
||
</div>
|
||
|
||
<div class="gallery__info">
|
||
<div class="profile-badge" aria-label="Profil Badge"></div>
|
||
<div class="gallery__handle" aria-label="Instagram Handle">@social_cooking</div>
|
||
</div>
|
||
</section>
|
||
</main>
|
||
</div>
|
||
|
||
<script src="javascript.js"></script>
|
||
</body>
|
||
</html> |