HTML Basics

PreviousNext

Basic Tags

<HR>

The Horizontal Rule tag produces a straight line across the screen.

<!--comment-->

A <!--> is simply a Comment tag. You can put comments anywhere. Do not use HTML tags within a comment.

Logical Style tags: highlight text, but do not specify the type of highlighting.


	<EM>.....</EM> 

	Provide typographical emphasis, typically italics 



	<STRONG>.....</STRONG> 

	Provide strong typographical emphasis, typically bold 



	<CITE>.....</CITE> 

	Specify a citation; includes book titles, references and so on...

Forced Style tags: force a certain style within a document.


	<B>.....</B>	

	Provides for Bold Text 	

	

	<I>.....</I>	

	Provides for Italic Text 

	

	<TT>.....</TT>	

	Provides for Monospaced Text

PreviousNext

Agenda

HTM060