| 
Adding HTML code to your lesson
plans
For those people who have asked about the formatting
of text with a Lesson or Unit Plan we offer a short guide
to improve the look of your pages.
When you fill in a lesson or Unit Plan on the Learning
Library website sometimes the text is displays in unexpected
ways. To overcome this you will have to add some basic
HTML <tags> to your code in the same way you do
for creating a link:
- Line break
If you want text to start on a new line add the <br> break tag.
- New Paragraph
If you want text to start on a new paragraph add the <p> paragraph
tag.
- Italics
To make text italic you have to add an opening and closing tag surrounding
the text you want to affect.
<i>italic text</i>
It is important you include the closing tag or all text from the opening
tag onwards will be affected.
- Bold text
For bold text add an opening and closing bold tag
<b>bold text</b>
- Bullet Points
Use the <UL> tag to create bullet points as follows:
<ul>
<li>first bullet point
<li>second point
<li>third point
</ul>
|