forked from NihalC2012/CullinaryCompass2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgingerbread.html
107 lines (94 loc) · 3.15 KB
/
gingerbread.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
102
103
104
105
106
107
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ginger Bread</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Karma">
<style>
body,
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Karma", sans-serif
}
.w3-bar-block .w3-bar-item {
padding: 20px
}
.nav ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
.nav li {
float: right;
}
.nav li a {
display: block;
text-align: center;
padding: 16px;
text-decoration: none;
}
.nav a {
display: block;
text-align: center;
padding: 16px;
text-decoration: none;
}
ul-foringredients {
list-style-type: none;
margin: 0;
padding: 0;
}
ul-foringredients li {
float: none
}
</style>
</head>
<body>
<!-- Top menu -->
<div class="w3-top w3-light-grey">
<div class="w3-white w3-xlarge" style="max-width:1200px;margin:auto">
<!-- <div class="w3-button w3-padding-16 w3-left" onclick="w3_open()">☰</div>
<!-- <div class="w3-right w3-padding-16">Mail</div> -->
<div class="w3-left w3-padding-16 nav li a"> <a href="index.html"> Cullinary Compass </a> </div>
<div class='w3-right w3-padding-16 nav li a'>
<ul class="nav">
<li class="li"><a class="nav li" href="about.html">About US</a></li>
<li class="nav"><a class="nav" href="contact.html">Contact US</a></li>
<li class="nav"><a class="nav" href="index.html"> Home Page </a></li>
</ul>
</div>
</div>
</div>
<!-- !PAGE CONTENT! -->
<div class="w3-main w3-content w3-padding" style="max-width:1200px;margin-top:100px">
<div class="w3-row-padding w3-padding-16 w3-center">
<img width="200px" height="300px"
src="https://fraicheliving.com/wp-content/uploads/2017/11/Gingerbread-Energy-Balls-819x1024.jpg">
<H4>Ginger Bread</H4>
</div>
<div>
<h4> Ingredients: </h4>
<ul>
<li> 1 cup oats</li>
<li> 1/2 cup almond butter</li>
<li>2 tablespoons honey</li>
<li>1/4 teaspoon ground ginger</li>
<li>1/4 teaspoon cinnamon</li>
<li>Pinch of cloves</li>
<li>1 tablespoon chia seeds</li>
</ul>
<h4> Instructions: </h4>
<ol type=1>
<li> In a bowl, combine all ingredients and mix well.</li>
<li> Roll mixture into small balls.</li>
<li> Refrigerate for at least 30 minutes before enjoying.</li>
</ol>
</div>
</div>
</body>
</html>