Skip to main content

WELCOME TO HTML

                                                        What is HTML?

Html stands for Hypertext Markup Language. Some student thinks that HTML is a programming language but it is not a programming language. It is a markup language. It is used to design web pages. The father of HTML is Tim-Berners Lee. He is also director of W3 Consortium.Html is created in 1991 but officially releasing year of HTML is 1995 with HTML 2.0 version.

What is Web?

The web is nothing, in simple term, it is a collection of web pages.

What is Hypertext?


Hypertext means that it is a way to web pages or HTML documents are linked together. If you want to access a page then you should have to click on the link.

What is the Markup language?

Markup language means that it is used for the presentation of text on the web page and it specifies the formatting of code. And it also focuses on the layout of the page.



SOME IMP POINTS.


HTML is based on Tags, Elements and attributes.


1.TAGS:

     There are 2 types of Tags.

    a. Open tags:  
Examples of open tag are <p>,<form> etc.




    b. Close tags:

Examples of closing tag are </p>,</form> etc.




2. Open Tags & Closed Tags are called as paired Tags.And Non-paired tags having only opening tags but  not closing tags


3.ATTRIBUTES:


4. Do not forget the closing tags.
      
ex.<p>Hello  = WRONG
           <p>Hello</p>= RIGHT

5. Tags are not case sensitive. It means that <p> and <P> both are same. But W3 Consortium recommended lowercase tags.

6. There are some empty elements tags just like <br>. It is empty element tag and used without slash (/).







                                          THANKS

Comments

  1. Responsive Regina web design has become the go-to solution for businesses who want a user friendly interface and higher customer retention. If your company has come this far without taking advantage of all the benefits it has to offer, you may have already begun to see lower visitor numbers and a disappointing conversion rate.

    ReplyDelete

Post a Comment

Popular posts from this blog

HTML VERSIONS

There are different Versions of html.You should have to know about the versions.                                   HTML                                                                 1991        HTML 2.0                                                           1995        HTML 3.2                                                           1997       ...

HTML BASIC PART2

HTML STRUCTURAL TAGS There are several html structural tags. We will learn these tags one by one. ANCHOR TAG <a> ARTICLE TAG <article> ASIDE TAG <aside> LINE BREAK TAG <br> DETAILS TAG <details> DIVISION TAG <div> HEADER TAG <header> HGROUP TAG <hgroup> HORIZONTAL RULE TAG <hr> FOOTER TAG <footer> NAV TAG <nav> SECTION TAG <section> SPAN TAG <span> SUMMARY TAG <summary>     ANCHOR TAG  Anchor tag denoted by <a>. It is used to define a hyperlink. It means that it allows the user to move from one page to other. Anchor tag is a paired tag it means  that it has opening and closing tag both. We can link a img,audio,video,pdf etc. By default, links are appear as follows. unvisited link , appear in underlined and blue color. visited link  , appear in underlined and purple color. active link , appear in underlined and red color. ...