Thursday, January 27, 2011

BaSiC HtML code how to make an HTML?

To start creating your own Html page you need to have a web page making tool(e.g. notepad, microsoft word, dream weaver, web page maker). Yeah I think you're already aware of this so let's get going for the codes shall we?

Fact you need to know:

1. your page must always have the structure.

<HTML>      "OPEN HTML"
<HEAD>      "PAGE HEADING BEGINS HERE"
<TITLE>      "THIS IS THE PAGE TITLE"
</TITLE>     "TITLE IS ENDED"
</HEAD>     "THE PAGE HEADING IS COMPLETE"
<BODY>       "The actual display (body) begins here"
 [Here you insert all the tags, words, and graphics that comprise your page.]
</BODY>    "THE DISPLAY IS FINISHED(PAGE END)"
</HTML>  "html is complete. YAY!^^"

2. You must know how to begin and end a tag. >=]

 Whatever you tell the browser to do, you must tell it when to stop, and in reverse order. We call an open/close pair, i.e., <HTML></HTML>, a "tag set". Let's say you wanted both bold and italics for the word "love" in sentence; "I love HTML". The tag for bold is <B> and for italics is <I>. The sentence would be marked up:

I <B><I>love</I></B> HTML
 and would look like this: