-
Notifications
You must be signed in to change notification settings - Fork 0
/
rezepte.html
39 lines (38 loc) · 1.15 KB
/
rezepte.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./styles/output.css" />
<title>Kochwelt</title>
<link
rel="shortcut icon"
href="./images/logo_small.png"
type="image/x-icon"
/>
<script
id="Cookiebot"
src="https://consent.cookiebot.com/uc.js"
data-cbid="ceef8029-a039-471d-ab66-f013e905c64b"
data-blockingmode="auto"
type="text/javascript"
></script>
</head>
<body class="font-raleway">
<header id="header"></header>
<main id="container">
<div class="mx-auto max-w-[1440px]">
<h1 class="mb-6 text-2xl font-semibold text-kw-menu">Unsere Rezepte</h1>
<section class="mb-8">
<h2 class="mb-4 text-xl font-semibold text-kw-menu">
Für jeden Geschmack etwas dabei
</h2>
<div id="rezepte"></div>
</section>
</div>
</main>
<footer id="footer"></footer>
<script type="module" src="./main.js"></script>
<script type="module" src="./scripts/rezepte.js"></script>
</body>
</html>