Let's say you want a formatted title for an announcement, e.g.
"Important:
Please read this", in your Blackboard course, centered and in bold.
In your Blackboard course, go to Control Panel, Announcement, Add item.
And in the text box, type
<center><b>Important: Please read this</b></center>
then press Enter to go the next line and type your announcement.
<center> is the command for centering selected text, </center> is the command to stop centering
<b> is the command for bold selected text, </b> is the command to stop bolding
<center><b>Books:</b></center> add <br> [like Enter to go to the next line] and type
author's last name, first name. <i>book title</i>. publisher, year. ISBN #
or
author's last name, first name. <u>book title</u>. publisher, year. ISBN #
then add <br> [like Enter to go to the next line] and type your next item.
The code <i> title </i> italicizes the title of the book, for the web for indicating the title of a printed book in italics.
The code <u> title </u> underlines the title of the book, required by publishers for italicizing the title.
The basics of HTML code:
You might want to open a new file in Netscape Composer and
type
testing
then highlight/select this text, and bold and center it by clicking
on the respective icons on the formatting bar.
Then click on View, HTML source (v. 4.7 has this on the Edit menu).
You will see the following basic code:
The formatting code here has the colors for this page: body text
black,
background color gray, the default link colors for untouched, selected,
or visited link.
The additional code for the body text in this example is
<center><b><font
size> ... </font></b></center> for center and bold.
A few common tags:
| start |
end |
meaning |
example |
| <b> |
</b> |
bold |
<b>bolded text</b> |
| <i> |
</i> |
italics |
<b>italic text</b> |
| <u> |
<u> |
underline |
<b>underlined text</b> |
| <center> |
</center> |
center |
<b>centered text</b> |
| <h3> |
</h3> |
heading 3 |
<b>medium large text</b> |
| <br> |
force a break to next line |
||
| add image |
<img src="image filename"> |
||
| add link |
<a
href="http://website.com">link text</a> |