Tuesday, May 19, 2009

HTML Tutorial: HTML color code

HTML code is represented in many ways ..
One is writing color code in Hex code for RGB followed by a #
for RED - #FF0000
GREEN - #00FF00
BLUE - #0000FF

Example
RED(#FF0000)
GREEN (#00FF00)
BLUE (#0000FF)

HTML Tutorial: Table basic

Basic table example:

<table>
<tr>
<td>row1 Col1
</td>
<td> row1 col2
</td>
<td> row1 col3
</td>
</tr>
<tr>
<td> row2 Col1
</td>
<td> row2 col2
</td>
<td> row2 col3
</td>
</tr>
</table>

This will create a table like











row1 Col1
row1 col2
row1 col3
row2 Col1
row2 col2
row2 col3

HTML Tutorial: The HTML

The HTML is a markup language for web page. Web browser can recognize it. The word HTML stands for Hyper Text Markup Language

This is the primary tool of World Wide Web(WWW) and the Internet.