All HTML Tags
  1. a
    1. The <a> tag defines a hyperlink, which is used to link from one page to another.
      The most important attribute of the <a> element is the href attribute, which indicates the link's destination.
      By default, links will appear as follows in all browsers:
      • An unvisited link is underlined and blue
      • A visited link is underlined and purple
      • An active link is underlined and red

  2. abbr 
    1. The <abbr> tag defines an abbreviation or an acronym, like "Mr.", "Dec.", "ASAP", "ATM".
        Ex:- <p>The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p>

  3. address 
    1. The <address> tag defines the contact information for the author/owner of a document or an article.
      If the <address> element is inside the <body> element, it represents contact information for the document.
      If the <address> element is inside an <article> element, it represents contact information for that article.
      The text in the <address> element usually renders in italic. Most browsers will add a line break before and after the address element.
      Ex:- 
      <address>
      Written by <a href="mailto:[email protected]">Jon Doe</a>.<br>
      Visit us at:<br>
      Example.com<br>
      Box 564, Delhi<br>
      India
      </address>

  4. area 
    1. The <area> tag defines an area inside an image-map (an image-map is an image with clickable areas).
      The <area> element is always nested inside a <map> tag.
      Ex:-
      <img src="planets.gif" width="145" height="126" alt="Planets"
      usemap="#planetmap"
      >


      <map name="planetmap">
        <area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun">
        <area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">
        <area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
      </map>

  5. article 
    1. The <article> tag specifies independent, self-contained content.
      An article should make sense on its own and it should be possible to distribute it independently from the rest of the site.
      Potential sources for the <article> element:
      • Forum post
      • Blog post
      • News story
      • Comment
        Ex:-
      <article>
        <h1>Google Chrome</h1>
        <p>Google Chrome is a free, open-source web browser developed by Google, released in 2008.</p>
      </article>

  6. aside 
    1. The <aside> tag defines some content aside from the content it is placed in.
      The aside content should be related to the surrounding content.
      Ex:-
      <p>My family and I visited The Epcot center this summer.</p>

      <aside>
        <h4>Epcot Center</h4>
        <p>The Epcot Center is a theme park in Disney World, Florida.</p>
      </aside>

  7. audio 
    1. The <audio> tag defines sound, such as music or other audio streams.
      Currently, there are 3 supported file formats for the <audio> element: MP3, WAV, and OGG.

      Ex:- 
    <audio controls>
      <source src="horse.ogg" type="audio/ogg">
      <source src="horse.mp3" type="audio/mpeg">
      Your browser does not support the audio tag.
    </audio>
    1. The <b> tag specifies bold text.
        Ex:- 
      <p>This is normal text - <b>and this is bold text</b>.</p>

  8. base 
    1. The <base> tag specifies the base URL/target for all relative URLs in a document.
      There can be at maximum one <base> element in a document, and it must be inside the <head> element.
      Ex:- 
    <head>
      <base href="https://www.satyamaaditya.com/images/" target="_blank">
    </head>

    <body>
    <img src="john.gif" width="24" height="39" alt="Stickman">
    <a href="https://www.satyamaaditya.com">SA</a>
    </body>

  9. bdi 
    1. BDI stands for Bi-Directional Isolation.
      The <bdi> tag isolates a part of text that might be formatted in a different direction from other text outside it.
      This element is useful when embedding user-generated content with an unknown directionality.
      Ex:- 
      <ul>
        <li>User <bdi>hrefs</bdi>: 60 points</li>
        <li>User <bdi>jdoe</bdi>: 80 points</li>
        <li>User <bdi>إيان</bdi>: 90 points</li>
      </ul>

  10. bdo 
    1. bdo stands for Bi-Directional Override.
      The <bdo> tag is used to override the current text direction.
      Ex:- 
      <bdo dir="rtl">
      This text will go right-to-left.
      </bdo>

  11. blockquote 
      1. The <blockquote> tag specifies a section that is quoted from another source.
        Browsers usually indent <blockquote> elements.

      Ex:- <
      blockquote cite="http://www.worldwildlife.org/who/index.html">

      For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally.
      </blockquote> 

  12. body 
    1. The <body> tag defines the document's body.
      The <body> element contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc.
      Ex:- 
      <html>
      <head>
      <title>Title of the document</title>
      </head>

      <body>
      The content of the document......
      </body>

      </html>

  13. br 
    1. The <br> tag inserts a single line break.
      The <br> tag is an empty tag which means that it has no end tag.
        Ex:- 
      This text contains<br>a line break. 

  14. button 
    1. The <button> tag defines a clickable button.
      Inside a <button> element you can put content, like text or images. This is the difference between this element and buttons created with the <input> element.
      Tip: Always specify the type attribute for a <button> element. Different browsers use different default types for the <button> element.
      Ex:- 
      <button type="button">Click Me!</button>

  15. canvas 

  16. caption 

  17. cite 

  18. code 

  19. col 

  20. colgroup 

  21. data 

  22. datalist 

  23. dd 

  24. del 

  25. dfn 

  26. div 

  27. dl 

  28. dt 

  29. em

  30. embed 

  31. fieldset 

  32. figcaption 

  33. figure 

  34. footer 

  35. form 

  36. h1 - h6 

  37. head 

  38. header 

  39. hr 

  40. html 


  41. iframe

  42.  img 

  43. input 

  44. ins 

  45. kbd 

  46. keygen 

  47. label 

  48. legend 

  49. li 

  50. link 

  51. main 

  52. map 

  53. mark 

  54. meta 

  55. meter 

  56. nav 

  57. noscript 

  58. object 

  59. ol 

  60. optgroup 

  61. option 

  62. output 


  63. param 

  64. pre 

  65. progress 


  66. rb 

  67. rp 

  68. rt 

  69. rtc 

  70. ruby 


  71. samp 

  72. script 

  73. section 

  74. select 

  75. small 

  76. source 

  77. span 

  78. strong 

  79. style 

  80. sub 

  81. sup 

  82. table 

  83. tbody 

  84. td 

  85. template

  86. textarea 

  87. tfoot 

  88. th 

  89. thead 

  90. time 

  91. title 

  92. tr 

  93. track 


  94. ul 

  95. var 

  96. video 

  97. wbr