Along with CSS, HTML can be presented in a smooth and a user freindly style.
Document tags define the overall structure of an HTML document.
There are four tags every HTML document should have. These tags define the what type of document it is, and the major sections.
These tags are <HTML>, <HEAD>, <TITLE>, and <BODY ...>.
You may also wish to use the <!DOCTYPE ...> declaration under some circumstances.
A really basic document might look like:
<HTML>
<HEAD>
<TITLE>A Really Basic Document</TITLE>
</HEAD>
<BODY>
This is a really basic document.
</BODY>
</HTML>
The above code shows that the page title will consist of the words "A Really Basic Document" and the main page content will consist of the words "A Really Basic Document"
This tutorial is intended as a very basic introduction to HyperText Markup Language and should provide enough information to allow you to experiment with a few of your own content.
Here is a live example of HTML:
- Code:
</style>
</head>
<body>
<div id="head"> </div>
<div id="foot"> ©2006/2007 Placehold Web Design
<li> <a href="http://validator.w3.org/check?uri=referer"><img
src="http://www.w3.org/Icons/valid-xhtml10"
alt="Valid XHTML 1.0 Transitional" height="31" width="88" border="0" /></a>
<a href="http://validator.w3.org/check?uri=referer"><img
src="http://www.w3.org/Icons/valid-xhtml10-blue"
alt="Valid XHTML 1.0 Transitional" height="31" width="88" border="0" /></a>
</div>
<div id="left">
<dl>
<dt><a class="nav" href="#">Home</a></dt>
<dd>Home</dd>
<dt><a class="nav" href="#">How it Works</a></dt>
<dd>How it Works</dd>
<dt><a class="nav" href="#">Prices</a></dt>
<dd>Prices</dd>
<dt><a class="nav" href="#">Information</a></dt>
<dd>Inch Loss</dd>
<dt><a class="nav" href="#" title="Your comments">Feedback</a></dt>
<dd>Hair Removal</dd>
</dl>
<dl>
<dt><a class="nav" href="#">Testimonial</a></dt>
<dd>Testimonial</dd>
<dt><a class="nav" href="#">Enquiry form</a></dt>
<dd>Enquiry form</dd>
<dt><a class="nav" href="#">Contact us</a></dt>
<dd>Contact us</dd>
</dl>
</div>
<div id="content">
<h2>Welcome to our website
Thank you for visiting our website. I hope you find it both informative and inspirational.</h2>
<p class="bold">Placehold</p>





View the profile