To really understand web design, you need to learn HTML hand-coding; it's easier than you think!
What is HTML ?
Click here to find out what HTML is
Tools like Dreamweaver are great, especially if you are building old-style web sites based on tables, sliced images, et cetera. But if you want to be able to build what I call 4th generation websites, then these tools will get in the way of you learning and will actually slow you down!
Learning to build your web sites using HTML will give you far better control over the process and ultimately your web sites. You will have a far deeper understanding of the web, and as a result you will create better web sites quicker - much quicker.
Next we give examples of a basic websites whats actually behind it
example !
<TITLE>Hello World</TITLE>
<META HTTP-EQUIV = "Description" NAME = "Description"
CONTENT = "This page is simply a basic HTML page">
<META HTTP-EQUIV = "Keywords" NAME = "Keywords"
CONTENT = "HTML, tutorial, learning, example">
</HEAD>
<BODY>
<!--This is a comment and comments do not show
up in the browser -->
This is a very simple web page
</BODY>
</HTML>

