By the end of this session, you will be able to:
Last week you created your first webpage! You learned about:
Today, weβre going to expand that page with more headings and paragraphs.
Headings are like titles or chapter names. They range from <h1> (the biggest) to <h6> (the smallest).
Example:
π‘ Tip: Use headings to show what each part of your page is about.
Paragraphs hold your text. They are wrapped in <p> tags.
Example:
π‘ Tip: Each paragraph should cover one idea or topic.
When you have a lot of information on your page, it can be helpful to break it up using a list.
Lists can be ordered, like this:
or unordered, like this:
Lists are different to paragraphs because you need an opening and closing tag for the list, and also for each list item
create a list like this:
<ul>
<li>item one</li>
<li>item two</li>
<li>and so on...</li>
</ul>
use <ul> tags for an unordered list, or <ol> for an ordered list.
Edit your Week 1 page and:
Remember to close your tags!
Click Save, then View your page in the browser. Make sure your headings and paragraphs appear correctly.
Add one more section with a heading and paragraph about a hobby or skill you want to learn this year. Show it to a friend at the club!