HTML stands for hyper text markup language. Actually it is a markup language which has set of tags. The tags are used to describe document content. HTML markup is also called tags. Tags are those particular keywords which are surrounded by angle brackets such as <html></html>.
Indeed, basically there are 2 types of HTML tags: one is singular tags and another is pair tag. In pair tag, there is one start tag and other is end tag. These tags can be also called as opening and closing tag.

We write the text between <html> and </html> that describes the webpages. Actually html elements are divided into 2 types: one is head part and another is body part.
When we write some text in the body part that is shown by web browser, it means that content is visible. But the head part contains some scripts, style etc.

basic html course
HTML language is written in the HTML Form which consists tangs enclosed in angle braces like <HTML>.
Tags are specific instruction to the browsers which starts with '<' and ends with '>'. Basically there are 2 types of tags, they are:-

Singular Tags

Singular tags are those tags which donot have companion. Singular tags end with trailor slash. Some of the singular tags are: <br/>, <hr/>, <img/> etc.

Plural Tags

Plural tags are those tags which always have a companion tag or paired tag. Those end with a trailor slash. Here is the examples of plural tags:-
eg: <div></div>, <b></b>

General Structure of HTML Document

<html>
   <head>

      <title></title>

   </head>

   <body>

   </body>

</html>

The shown above format of coding is a general structure of html document. This structure is worldwide format of html document. Just copy and paste the given above code and save it in .html extension. Then click the save file and see what you see. I think you will see blank page because still we have not written any content in the main body. 

Post a Comment

 
Top