Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Basic HTML

HTML - hypertxt markup language. one of the most important thing that you must learn in-order for you to create an effective website. every web programmer must learn fort how to create a basic Html doument.

here is the basic:

<html>

<head>

<title>        </title>

</head>
<body>


</body>
</html>


in creating an HTML document, you must remember that their are tags to be used.  and each tag are paired with opening and closing tag.

ex:
    <html> is an opening tag
    </html> is the closing tag.

the tags used in the example above are:

<html> </html>
<head> </head>
<title> </title>
<body> </body>

to put a content, you must place your statement between each tags. ex:

(open notepad for this sample)

<html>

<head>

<title>  my first try </title>

</head>
<body>


this is my first webpage



</body>
</html>


this will create a page that has a title of "my first try" and a content of  "this is my first page"

but before you can see the output, you should save is as and html document(ex: myfirst.html) then after saving, you can open it with any of your internet browser(firefox, IE,Opera etc...)




This post first appeared on TUTS-EXTREME, please read the originial post: here

Share the post

Basic HTML

×

Subscribe to Tuts-extreme

Get updates delivered right to your inbox!

Thank you for your subscription

×