Some Basic Rules of HTML

[green bullet]> 
		<B>HTML tags open with a left angular bracket (<),</B> followed by a letter or a
		word, and close with a right angular bracket (>). Tags are almost always
		paired, e.g. <H1> and </H1>. The ending tag looks just like the
		starting tag, except that a slash (/) precedes the text within the brackets.
<P>

	<DD><IMG SRC= but make sure that you don't end a tag before you end a tag that started inside it. Thus, <B>...<I>...</B>...</I> should be <B>...<I>...</I>...</B>.

[green bullet]> 
		<B>HTML is not case sensitive.</B> <title> is completely equivalent to
		<TITLE> or <TiTlE>. But the text to be displayed is case-sensitive,
		as are file and server names (on some systems).

<P>

	<DD><IMG SRC=


[Forward] Go to Exercise 4 now
[Back] Back to An Overview of HTML
[Up] Up to the Contents page