HTML coding

Overview

HTML coding is standard coding but there are some differences between the browsers.

Compatibilities

The webmaster needs to test his web site with different browsers and different displays.

Tags

Filename


Webpage structure

There are two blocks inside the main block.





Note : I's possible to change the page background with the <body> tag


Text formating


Example : <p style="text-indent:25px; color:green; font-weight:bold; font-family:tahoma; text-align:justify;">

Additional elements


Additional Options

Table


<TABLE border=1>

<TR> <!-- New line -->

<TD>Line 1 Row1</TD><TD>Line 1 Row2</TD><TD>Line 1 Row3</TD>

</TR>

<TR> <!-- New line -->

<TD>Line 2 Row1</TD><TD>Line 2 Row2</TD><TD>Line 2 Row3</TD>

</TR>

</TABLE>

Unnumbered list


<UL>Unnumbered List

<LI>Value 1

<LI>Value 2

<LI>Value 3

</UL>


Ordered list


<OL>Ordered List

<LI>Value 1

<LI>Value 2

<LI>Value 3

</OL>