Tuesday 3 May 2011

Learn HTML

HTML Tutorial
With HTML you can create your own Web site.

You can write this HTML code in any HTML editor like Adobe Dreamweaver, golive etc. And save it ".html" extension.
Some example below here ....

<html>
<head>
<title>write some title</title>
</head>
<body>
Design your website
</body>
</html>


Here <html>, <head>, <title> and <body> is mandatory tags to create a website. Without this tag you did not create any website. All tags

must be close like </title>, </head>, </body>, </html>.

2 comments:

  1. The example given is not a valid web page; it is missing a DOCTYPE.

    Also, the HTML, HEAD and BODY tags are optional. For example, the following is a valid web page: http://t.cfaj.ca/valid.html (you can check it at
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Ft.cfaj.ca%2Fvalid.html ).

    ReplyDelete
  2. Yes, you are right but this is first step. so I did not give this "DOCTYPE".
    Just starting for learner ....

    ReplyDelete