Practice and reinforce the concepts from Lesson 4
In this activity, you will:
Estimated Time: 45-60 minutes
Make sure you have:
Here's what you'll be creating:
:warning: Important! Start Here: Remix this EduBlocks Project!
Remember to click the "Clone" button to create your own copy!
In this project, you will create a delicious recipe webpage using HTML lists!
Follow these steps to create your food recipe webpage:
<h1>
heading block:bulb: Tip: Recipe Ideas Some simple recipes to try:
- Peanut Butter & Jelly Sandwich
- Fruit Salad
- Chocolate Milk
- Toast with Toppings
<p>
<a>
inside the paragraphExample recipe link: https://recipes.timesofindia.com/recipes/egg-sandwich/rs60018142.cms
:bulb: Tip: Quick Hint You only need 2 blocks for this:
- One
<p>
block- One
<a>
block inside it
<h2>
with text "Ingredients"<ul>
block<li>
:bulb: Tip: List Formatting Unordered lists create bullet points - perfect for ingredients where order doesn't matter!
<h2>
with text "Instructions"<ol>
block<li>
:bulb: Tip: Step-by-Step Success
- Keep each step short and clear
- Start with action words like "Mix", "Add", "Bake"
- Include cooking times and temperatures
<p>
paragraph block after the list itemTo make your recipe easier to read, add spacing between sections:
:bulb: Tip: Spacing Tips Use
<br />
tags to create line breaks between:
- Your title and ingredients
- Ingredients and instructions
- Each major step in complex recipes
:bulb: Tip: Recipe Best Practices
- Choose a simple recipe with 5-8 ingredients maximum
- Use unordered lists (
<ul>
) for ingredients - order doesn't matter!- Use ordered lists (
<ol>
) for cooking steps - order is important!- Include at least 2-3 images to show key steps
- Write clear, short instructions that are easy to follow
- Add proper spacing with
<br />
tags for readability- Test your links before submitting
Having trouble? Here are solutions to common issues:
<li>
block is inside a <ul>
or <ol>
block<img>
block with the src
attribute<a>
block has the href
attributehttp://
or https://
<br />
tags between sections<br />
tags in a rowBefore submitting, make sure your recipe has:
<h1>
<ul>
and <li>
<ol>
and <li>
:warning: Ready to Submit? When you have completed your HTML Food Recipe project:
:dart: Submit Your Project Here
Make sure to test your webpage first - all elements should work properly!
:information_source: Submission Tips
- Preview your recipe in EduBlocks
- Check that all images load
- Test all links
- Copy your project URL
- Submit through the form above
Great job! You've learned how to create organized content using HTML lists! :tada: