Search This Blog

Monday, 10 October 2011

New Lines/Spacing


New Lines/Spacing

New lines are very important for making any website. In order to create a new line you would add the following code:
<BR>

Spacing is also very important. When using HTML, you can use just a space, but only up to the first space. Beyond the first space, the web-browser will just ignore. In order to do any amount, you must use the following code for each space wanted:
&nbsp;

Let us Consider an example using <br> tag and  '&nbsp' :

Example:

<HTML>
<HEAD>
<TITLE>Example Page</TITLE>
</HEAD>

<BODY>

<H1 ALIGN="center">Example using Header tag and Paragraph tag </H1>

<H2>New Lines/Spacing</H2>


&nbsp&nbsp&nbsp&nbsp&nbsp Spacing is also very important.When using HTML, you can use just a space, but only up to the first space. <BR> &nbsp&nbsp&nbsp&nbsp&nbsp Beyond the first space, the web-browser will just ignore.

</BODY>
</HTML>


Output/ Result:












No comments:

Post a Comment