-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecipepage.html
More file actions
36 lines (36 loc) · 1.05 KB
/
recipepage.html
File metadata and controls
36 lines (36 loc) · 1.05 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gramdma's Secret Apple Pie</title>
<style>
.center_text{
text-align: center;
}
</style>
</head>
<body>
<header class="center_text">
<h1>Grandma's Secret Apple Pie</h1>
</header>
<div>
<p>This apple pie recipe has been in my family for generations and never fails to delight.</p>
<h2>Ingredients</h2>
<ol>
<li>1/2 cup sugar</li>
<li>2 tsp ground cinnamon</li>
<li>6 medium-sized apples, peeled and sliced</li>
</ol>
<h2>Instructions</h2>
<ol>
<li>Preheat oven to 375°F (190°C).</li>
<li>In a bowl, mix the sugar and cinnamon.</li>
<li>Toss the apples in the sugar-cinnamon mixture. </li>
</ol>
</div>
<footer class="center_text">
<p>© 2023 by [Your Name]. All rights reserved.</p>
</footer>
</body>
</html>