-
Notifications
You must be signed in to change notification settings - Fork 0
/
recipe.html
40 lines (40 loc) · 1.28 KB
/
recipe.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
<!DOCTYPE html>
<html>
<head>
<title>Smart Fridge</title>
<link rel="stylesheet" href="style/mainstyle.css" />
<link rel="stylesheet" href="style/recipestyle.css" />
<meta charset="UTF-8">
</head>
<body>
<div class="recipeBox" style="top:140px;">
<span class="recipeName">Pfannkuchen</span>
<span class="difficulty" style="color:#33FF33">Einfache Zubereitung</span>
<span class="zutaten">Milch, Eier, Mehl, Öl, Salz, Zucker</span>
<a href="recipe1.html"><button class="recipeButton">Mengenangaben/Zubereitung</button></a>
</div>
<div class="recipeBox" style="top:340px;">
<span class="recipeName">Armer Ritter</span>
<span class="difficulty" style="color:#33FF33">Einfache Zubereitung</span>
<span class="zutaten">Toast, Eier, Milch, Butter, Zimt, Zucker</span>
<button class="recipeButton">Mengenangaben/Zubereitung</button>
</div>
<div id="headerBar">
<span id="header">Rezepte</span>
<a href="messages.html">
<img src="pics/brief.svg" id="messagesIcon"/>
</a>
<a href="index.html">
<img src="pics/home.svg" id="homeIcon"/>
</a>
<a href="settings.html">
<img src="pics/zahnrad.svg" id="settingsIcon"/>
</a>
</div>
<div id="footerBar">
<a href="index.html">
<span id="back">Zurück</span>
</a>
</div>
</body>
</html>