forked from hack4impact-calpoly/bootcamp-grocery-prep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
croissant.html
101 lines (91 loc) · 3.1 KB
/
croissant.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
96
97
98
99
100
101
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>Sah Dude</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1 class="top">~Grocery Prep~</h1>
<nav>
<a class="top" href = "index.html">Home</a>
<a class="top" id="random"href="random.html">Random Recipe</a>
<a class="top" id= "about" href = "about.html">About the Chef</a>
</nav>
</header>
<main>
<h1 class = "title">Breakfast Croissantwich</h1>
<div class = "intro">
<div class="info">
<p class= "desc">
Start your day off right with this very yummy breakfast (or lunch) croissantwich.
</p>
<h4>Servings</h4>
<div class="buttons">
<button id="-"> – </button>
<span id="num_servings">1</span>
<button id="+"> + </button>
</div>
</div>
<img class="food-img" src=images/croissant.jpg> </img>
</div>
<h3>Ingredients</h3>
<ul id="ingredients">
<li>
<span class="ingredient">1</span>
croissant(s)
</li>
(the ones from Costco are s-rank)
<li>
<span class="ingredient">1</span>
egg(s)
</li>
<li>
<span class="ingredient">2</span>
piece(s) of lettuce
</li>
<li>
<span class="ingredient">0.5</span>
sliced tomato(es)
</li>
<li>
<span class="ingredient">0.25</span>
avocado
</li>
<li>
<span class="ingredient">1</span>
cheese slice(s)
</li>
<li>
<span class="ingredient">1</span>
pinch(es) of salt and pepper
</li>
</ul>
<h3>Instructions</h3>
<ol>
<li>Slice croissant open and put cheese on it</li>
<li>Melt cheese over croissant
<ul>
<li>Use toaster oven if possible</li>
<li>Else do it on the pan</li>
</ul>
</li>
<li>(option) Sizzle some ham/bacon and put that on the sandwich too</li>
<li>Crack an egg on the pan and fry it</li>
(I recommend overcooking the egg a little so it doesn't run everywhere
when you bite into it)
<li>Put cooked egg on croissant slice.</li>
<li>Add decorations as desired
<ul>
<li>sliced tomato</li>
<li>lettuce</li>
<li>avocado</li>
<li>salt / pepper</li>
</ul>
</li>
<li>Close the sandwich</li>
</ol>
</main>
<script src="recipe.js"></script>
</body>
</html>