forked from ProgrammingMadeEasy-Community/HTMLProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (58 loc) · 1.89 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pancake Recipe</title>
</head>
<body>
<header>
<div>ALL RECIPE</div>
<nav>
<ul>
<li><a href="#ingredients">Ingredients</a></li>
<li><a href="#steps">Steps</a></li>
<li><a href="#subsribe">Subscribe</a></li>
</ul>
</nav>
</header>
<main>
<h1>Good Old Fashioned Pancakes</h1>
<img
src="https://images.unsplash.com/photo-1575853121743-60c24f0a7502?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MXx8cGFuY2FrZXxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=700&q=60"
alt="pancake"
width="250"
/>
<h2 id="ingredients">Ingredients</h2>
<ol>
<li><input type="checkbox" /> 1 ½ cups all-purpose flour</li>
<li><input type="checkbox" /> 3 ½ teaspoons baking powder</li>
<li><input type="button" /> 1 ¼ cups milk</li>
<li><input type="radio" /> 1 egg</li>
</ol>
<h2 id="steps">Steps</h2>
<h4>Step 1</h4>
<p>
In a large bowl, sift together the flour, baking powder, salt and sugar.
Make a well in the center and pour in the milk, egg and melted butter;
mix until smooth.
</p>
<h4>Step 2</h4>
<p>
Heat a lightly oiled griddle or frying pan over medium-high heat. Pour
or scoop the batter onto the griddle, using approximately 1/4 cup for
each pancake. Brown on both sides and serve hot.
</p>
</main>
<hr />
<footer>
<h6 id="subscribe">Subscribe</h6>
<form onsubmit="alert('Subscribed')">+
<input type="text" placeholder="Enter Email Address" />
<button>Submit</button>
</form>
<br />
<div>© dakota kelly at Allrecipe.com</div>
</footer>
</body>
</html>