-
Notifications
You must be signed in to change notification settings - Fork 0
/
produkt-detail.html
95 lines (89 loc) · 3.87 KB
/
produkt-detail.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="/css/style.css" />
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
</head>
<header class="header-imprint">
<div class="header__logo-box ">
<img src="img/Logo-black.svg" alt="Logo" class="header__logo">
</div>
<div class="header__menu-box">
<a href="navi.html"> <img src="img/Burger Menu-black.svg" alt="Menu" class="header__menu"> </a>
</div>
</header>
<body>
<section class="produkt">
<article>
<div class="produkt-detail u-margin-bottom-small">
<img src="img/FEND_Coffee_Costa-Rica 2.png" class="produkt-detail-bild">
</div>
<section>
<h2 class="heading-secondary u-margin-top-big" > Costa Rica </h2>
<p class="heading-tertiary--sub u-margin-bottom-small " > 6,90€ – 26,90€ </p>
<p class="body"> Costa Rica Filterkaffee ist äußerst ergiebig und hat praktisch keine Säure.
Den Gaumen umschmeichelt ein vollmundiges Haselnussaroma. Gleich probieren!</p>
</section>
</article>
<div class="item-middle u-margin-top-big u-margin-bottom-small">
<a href="#" class="btn btn-black"> In den Warenkorb </a>
</div>
<section class="flex-container-icons u-margin-top-big u-margin-bottom-big">
<div class="flex-item-icon">
<img class="icon u-margin-bottom-small" src="img/Icon Kaffee Bohnen black.svg" alt="Kaffeebohnen">
<p class="icon-text"> Mild geröstet </p>
</div>
<div class="flex-item-icon">
<img class="icon u-margin-bottom-small" src="img/Icon French Press black.svg" alt="Frenchpress">
<p class="icon-text"> Für Frenchpress </p>
</div>
<div class="flex-item-icon">
<img class="icon u-margin-bottom-small" src="img/Icon Kaffee Schaufel.svg" alt="Kaffeeschaufel">
<p class="icon-text"> gemahlen </br> oder als </br> Bohne </p>
</div>
</section>
<h3 class="heading-tertiary u-margin-top-big u-margin-bottom-small"> Beschreibung </h3>
<p class="u-margin-bottom-small body"> MAYA Hochlandkaffee von MAYA Kaffee 1991 wird an den Hängen der Sierra Madre de Chiapas angebaut,
ein Gebirgszug, der sich entlang der Pazifikküste im Süden Mexikos erstreckt.
Hier haben sich indianische Kleinbauern mit Anbauflächen von ein bis drei Hektar Land in Kooperativen zusammengeschlossen und
verzichten komplett auf Industriedünger und Pestizide. Schonend geröstet,
entwickelt diese einzigartige Spezialität ein überraschend vielschichtiges Aromenspiel mit deutlichen Noten von Haselnuss.
Als klassischer Aufguss ist unser MAYA Filterkaffee besonders ergiebig.
100% BIO aus kontrolliert ökologischem Anbau. DE-ÖKO-003 / Nicht-EU-Landwirtschaft.
</p>
</section>
</body>
<footer class="footer">
<div class="grid-footer-container">
<div class="grid-footer-item footer-logo-item">
<div class="footer__logo-box">
<img src="img/Logo.svg" alt="Logo" class="footer__logo">
</div>
<div class="footer__text-box">
<h3 class="heading-tertiary">
<span class="heading-tertiary--main"> Rustica </span>
<span class="heading-tertiary--sub"> Café & Rösterei </span>
</h3>
</div>
</div>
<div class="grid-footer-item">
Komm uns besuchen! <br> Fraunhofer Str. 13, Kiel
</div>
<div class="grid-footer-item">
Mo – Fr 8–18 Uhr <br> Sa 11–18 Uhr
</div>
<div class="grid-footer-item">
Impressum <br> Datenschutz
</div>
<div class="grid-footer-item">
Café <br>
Shop <br>
Herkunft
</div>
</div>
</footer>
</html>