Introduction

Lesson 1

Lesson 2

Lesson 3

Lesson 4

Lesson 5

Lesson 6

Lesson 7

Lesson 8

Lesson 9

Lesson 10

Tips

References

Making important things stand out

There are many ways to make an important string of text stand out from the rest in html. The most important ones are just like the ones a word processor program offers, html give the possibility to make text bold, italics, underlined or even typewriter. There is a pair of tags for each of the functions mentioned:

<b>Bold</b> Bold
<i>Italics</i> Italics
<u>Underlined</u> Underlined
<tt>Typewriter</tt> Typewriter

Knowing these tags, try comming up with this next example page page by yourself. You will use this page later in this program so when you are done, save it as "Micro1.html" in the same directory as the other one.

Example:------------------------------------------------------------

What is a microcomputer?

A microcomputer is a device that can be programable to process control, robotic, military, and industrial aplications. Microcomputers have limited data entry and display capabilities but enough to perform well in conjunction with a human being and that way helping us get our homework done easier, faster, and better.

Many microcomputers can work at very low power levels, making it ideal for battery use

Now let's start a new document with the following code:

	

Tags viewed today

<h#></h#> The heading tag with six different sizes. <h1> being the largest and <h6> the smallest.
<p> This tag is used to start a new paragraph in a page. It leaves a blank line between bodies of text.
<br> Skips one line of text no matter the ending position of the last line.
<hr> Makes a break in the page by putting a horizontal line between bodies of text.

Coming up next: Lesson 3, Emphasizing and positioning text.