HTML is the hidden coding behind any web page, which tells the browser what to display on the user's screen.
tags' onclick="javascript:counttag('Html', 1, 379209)"; href="/tags/html/" onclick="javascript:LinkToPage('','link_id=110')">
HTML tags are
contained within "<" and ">" brackets. Most
html tags have an opening tag <tag> and a closing tag </tag> which contains a "/" before the tag name. There are a few exceptions, but it's generally best practice to always include the closing tag -- it makes editing the html easier as you can see where tags close.
head information:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Insert your page title here</title>
</head>
document body:
<body bgcolor="#FFFFFF">
Opens the body and tells the browser the background color. Then you need to actually add your content, but it needs to be enclosed in HTML tags.
basic tables:
To create the simple table below use the following HTML:
<table border="1" cellspacing="2" cellpadding="4" bgcolor="#FFFF99">
<tr>
<td>Table cell</td>
<td>Table cell</td>
</tr>
<tr>
<td>Table cell</td>
<td>Table cell</td>
</tr>
</table>
thats was only the begging of the html world, use this and start building your own website!