HTML from Begining

priyal_hdp

Active member
  • Jan 2, 2009
    315
    38
    28
    This chapter describes how to create a website using HTML tags & supports beginers to be an expert in web site development.

    What is HTML?

    HTML is a Markup Language using for displaying web pages and other information that can be displayed in a web browser.


    • HTML stands for Hyper Text Markup Language
    • HTML is not a programing Language. It is a markup language.


    HTML Tags

    • HTML markup tags are usually called HTML Tags.
    • HTML Tags use to describe web pages.
    • HTML Tags are indicated by angle brackets within the web page. (ex: <html>, <body>)
    • HTML tags mostly come with opening & closing pairs of tags. (ex: <html> </html>)
    • Rest of the tags are come with unpaired tags which are known as empty elements. (ex: <br>, <img>)
    • In between these tags, can add texts, comments & other type of text-based contents.

    Sample HTML


    <html>
    <head>
    <title>Hello, This is my First Web Page </title>
    </head>
    <body>
    <h2>Hello, Welcome </h2> <h3>to my Web Page. This is my first experience with HTML </h3>
    </body>
    </html>

    See more : Programming Languages for Beginners