Social_Cooking/index.html

78 lines
2.9 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

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>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="Firmenlogo Invité">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="Zum Login-Bereich" 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">
Beschreibung: Erklärt das Konzept von Social Cooking und lädt Nutzer ein, Events zu erstellen oder zu suchen.
</p>
<button class="btn btn--primary" aria-label="Kostenlos Anmelden" type="button">Anmelden</button>
</div>
<div class="hero__right">
<div class="image-card" aria-label="Visualisierung eines Cooking-Events">
<div class="image-card__placeholder" aria-hidden="true"></div>
<div class="social-badge" aria-label="Anzeige der Teilnehmeranzahl">
<span class="social-badge__dot" title="Teilnehmer 1"></span>
<span class="social-badge__dot" title="Teilnehmer 2"></span>
<span class="social-badge__dot" title="Teilnehmer 3"></span>
</div>
</div>
</div>
</section>
<section class="gallery" aria-label="Vorschau vergangener Events">
<div class="gallery__controls">
<button class="arrow arrow--prev" type="button" aria-label="Vorheriges Bild anzeigen">&lt;</button>
<button class="arrow arrow--next" type="button" aria-label="Nächstes Bild anzeigen">&gt;</button>
</div>
<div class="gallery__track">
<article class="gallery__item" aria-label="Event Foto 1">
<div class="placeholder"></div>
</article>
<article class="gallery__item" aria-label="Event Foto 2">
<div class="placeholder"></div>
</article>
<article class="gallery__item" aria-label="Event Foto 3">
<div class="placeholder"></div>
</article>
</div>
<div class="gallery__info">
<div class="profile-badge" aria-label="Profilbild des Hosts"></div>
<div class="gallery__handle" aria-label="Instagram Link zu social_cooking">@social_cooking</div>
</div>
</section>
</main>
</div>
<script src="javascript.js"></script>
</body>
</html>