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

Editor For Html

There are several types of editor in the market .Some Editor names are given below. Notepad++. Notepad. TextEdit (MAC). VS Code.      Structure of HTML It is the most important part of HTML.Complete Website totally depend on this structure. 1. DOCTYPE Html It is not a Html tag. It is the very first thing in html pages. It is the instruction to the browser about the version of the markup language. It is not a case sensitive. < !DOCTYPE  html >: It is a html5 Declaration   **Always add Doctype in your code. It helps the browser to render the content correctly.** 2. HTML It is paired a  tag. It means that it consist a opening and closing tags both. It is containing a whole data of a html document. Each html document contain one <html> opening and closing tag. *As shown in figure, Head and body are the child of  HTML tag.* 3. HEAD It is  a  container for page header informati...

ASIDE TAG

ASIDE TAG ASIDE tag is new tag in HTML5. It represents a part of a document whose content is only indirectly related to the document's main content..] Aside tag used  for pull quotes,comments,editorial sidebars etc. NOTE: Behaviour of div and aside are same but  meaning is different. Div is used for create a section or a division. Aside is also used for create a section or division but related to content of the main page.         SYNTAX <!DOCTYPE html> <html> <head> <title> HTML Aside Tag </title> </head> <body> <aside> <h2>HTML</h2> <p>HyperText markup Language</p> </aside> </body> </html> OUTPUT HTML Hypertext markup Language -----------------------------------------------------------------------------------------------------------------------------------------...

ARTICLE TAG

ARTICLE TAG Article tag is new tag in HTML5. It is used to represent the article. It is used for blog post,forms,newspapers,magazines etc. Article tag  specifies self-contained composition in a site, document, page or application. It supports all global attributes.     SYNTAX <!DOCTYPE html> <html> <head> <title> HTML Article Tag </title> </head> <body> <article> <h2>HTML</h2> <p>HyperText markup Language</p> </article> </body> </html> OUTPUT HTML Hypertext markup Language --------------------------------------------------------------------------------------------------------------------------