-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (40 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Cake Class</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<section id="cakeSection">
<h1>Let's Make a Cake!</h1>
It's going to be a <em>piece of cake!</em>
<h2>Ingredients</h2>
<button onclick="toggleTheme();">Toggle Theme</button> <!-- ⛯ / ☾ -->
<ul class="grid">
<li>🍓</li>
<li>🍔</li>
<li>🥛</li>
<li id="eggEmoji">🥚</li>
<li>🍣</li>
<li>🍗</li>
<li>🧈</li>
<li>🥣</li>
</ul>
<h3>Directions</h3>
<ol>
<li>
Preheat oven to 350 degrees F (175 degrees C).
</li>
<li>
In a medium bowl, combine all ingredients.
</li>
<li>Pour batter into baking pan.</li>
<li>
Bake for 30 to 40 minutes in the preheated oven.
</li>
<li>Enjoy!</li>
</ol>
</section>
<script src="index.js"></script>
</body>
</html>