Page 89 - CA_165_V2.0_Flipbook
P. 89
Sometimes blank space is required in between the words in the text as most of the browsers do not
provide space of more than one column in between the words. " " or " " entities are used to
provide more than one column of space at a time on each occurrence. For example:
ORANGE_EDU         PUBLISHERS
[OR]
ORANGE_EDU PUBLISHERS
The above example will leave three column of blank space in between the word ORANGE_EDU and
PUBLISHERS.
The following HTML code uses these special characters to display them on the web page:
<HTML>
<HEAD>
<TITLE> Setting Spaces in between the Words </TITLE>
</HEAD>
<BODY>
ORANGE_EDU         PUBLISHERS
</BODY>
</HTML>
The output of the preceding HTML code is as follows:
<P> TAG
Paragraph tag is used to begin a paragraph in a web page. When the browser encounters this tag, the
text moves into a new line skipping one line from the previous line. The ‘Paragraph’ tag <P> contains the
data and the text level elements which has to be displayed. It has an optional end tag </P> which may
be omitted.
<P> Tag
Type Function Attributes Contains Used Inside
Container tag Defines a ALIGN Text content as part Typically placed
paragraph block in of a paragraph. within <BODY> or
HTML. other container tags.
The syntax for using the <P> tag is as follows:
<P> Paragraph Content </P>
For example:
ORANGE EDUCATION <P> A Complete Reference Book for Students</P>
Introduction to HTML 87

