Files

45 lines
1.7 KiB
HTML
Raw Permalink 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, maximum-scale=1.0" />
<title>Wähle das Datum Date-Planer</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&family=Quicksand:wght@600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="datetime.css" />
</head>
<body class="page-datetime has-continue-bar">
<div class="heart-background" aria-hidden="true">
<div class="heart-shape"></div>
</div>
<main class="container">
<a class="back-link" href="index.html"> Zurück</a>
<div class="intro">
<h1>Wann soll es losgehen? 💌</h1>
<p id="activitySummary">Wähl das passende Datum für unser Date aus.</p>
</div>
<section class="calendar-card" aria-label="Kalender">
<div class="calendar-header">
<button id="prevMonthBtn" class="month-nav-btn" type="button" aria-label="Vorheriger Monat"></button>
<h2 id="monthLabel" class="month-label">Monat Jahr</h2>
<button id="nextMonthBtn" class="month-nav-btn" type="button" aria-label="Nächster Monat"></button>
</div>
<div class="weekday-row" id="weekdayRow"></div>
<div class="day-grid" id="dayGrid"></div>
</section>
</main>
<div class="continue-bar">
<div class="container">
<button id="continueBtn" class="btn btn-primary" type="button" disabled>Weiter</button>
</div>
</div>
<script src="datetime.js" defer></script>
</body>
</html>