Start Web Design through HTML

                 HTML Description with Tags and Attributes

Now here we discuss about some HTML Features and it's output.
HTML stands for HyperText Mark up Language
  HTML is a Computer Language devised to allow website creation.
   HTML have 2 types of Tags :-
         1. Container Tags :- Container tags are those types of tags which have both open and close also.
              Ex:- <html>......</html>, <body> ........  </body> etc.
         2. Empty Tags :- Empty tags are those tags which would no need to close.
              Ex:- <br>, <img>, <hr> etc.
   Firstly one thing is important to know that Which softwares are needed to develop HTML files:-
         1. Adobe Dreamweaver, Notepad, Notepad ++, Sublime Text Editor. This all softwares are                       needed for coding.
         2. Then for output we use GOOGLE CHROME, MOZILLA FIREFOX, INTERNET                               EXPLORER
   Here we describe some basic HTML tags which are required to develop any HTML document.

                          Here we describe some basic but important HTML tags
         1. HTML :- It is starting tag of HTML coding page.
         2. HEAD :- In head section we put keywords, Meta tag description of our page.
         3. TITLE :- Here we put title of our page.
         4. BODY :- In body tag we describe our code, tag and put all it's description of our web page.

   We describe basic HTML Structure
       <html>
          <head>
             <title>
               ..................
             <title>
         </head>
         <body>
              ..................
         </body>
      </html>
       


Comments

Popular Posts