Basic Tags
- All HTML tags must enclosed within < > these brackets.
 - Every tag in HTML perform different tasks.
 - If you have used an open tag <tag>, then you must use a close tag </tag> (except some tags)
 
    Let's See Tags Example:-
      <html>  
      <body>  
            <p> Paragraph Tag </p>
           <h2> Heading Tag </h2>
           <b> Bold Tag </b>
           <i> Italic Tag </i>
           <u> Underline Tag</u>
      </body>  
      </html>  
Post a Comment