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:
Let us Consider an example using <br> tag and ' ' :
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>
      Spacing is also very important.When using HTML, you can use just a space, but only up to the first space. <BR>       Beyond the first space, the web-browser will just ignore.
</BODY>
</HTML>
Output/ Result:
No comments:
Post a Comment