Some Important HTML Tags

Some Important HTML Tags
  1. <html>: Defines the root of an HTML document.
  2. <head>: Contains meta-information about the HTML document.
  3. <title>: Sets the title of the HTML document, displayed in the browser’s title bar or tab.
  4. <body>: Contains the content of the HTML document, such as text, images, links, etc.
  5. <h1> to <h6>: Defines headings of different levels, where <h1> is the highest level and <h6> is the lowest.
  6. <p>: Defines a paragraph.
  7. <a>: Defines a hyperlink, linking to another webpage or resource.
  8. <img>: Embeds an image in the HTML document.
  9. <ul>: Defines an unordered list.
  10. <ol>: Defines an ordered list.
  11. <li>: Defines a list item within <ul> or <ol>.
  12. <div>: Defines a division or section in the HTML document, often used for layout and styling purposes.
  13. <span>: Defines a span of text, often used for styling individual elements.
  14. <table>: Defines a table.
  15. <tr>: Defines a table row.
  16. <td>: Defines a table cell.
  17. <form>: Defines an HTML form for user input.
  18. <input>: Defines an input control within a form, such as text input, checkboxes, radio buttons, etc.
  19. <textarea>: Defines a multiline text input control.
  20. <button>: Defines a clickable button.
  21. <strong>: Defines text with strong importance, typically displayed in bold.
  22. <em>: Defines text with emphasized importance, typically displayed in italics.
  23. <br>: Inserts a single line break.
  24. <hr>: Represents a thematic break between paragraph-level elements, typically displayed as a horizontal line.
  25. <blockquote>: Defines a block quotation.
  26. <cite>: Defines the title of a work (e.g., a book, a song, a movie) that is being cited.
  27. <abbr>: Defines an abbreviation or acronym, providing its full expansion.
  28. <sub>: Defines subscript text.
  29. <sup>: Defines superscript text.
  30. <iframe>: Embeds another HTML page into the current document.
  31. <meta>: Provides metadata about the HTML document, such as character encoding, author, description, etc.
  32. <script>: Defines client-side JavaScript code within the HTML document.
  33. <style>: Defines CSS styles within the HTML document.
  34. <link>: Defines the relationship between the current document and an external resource, typically used to link CSS stylesheets.
  35. <audio>: Embeds audio content into the HTML document.
  36. <video>: Embeds video content into the HTML document.
  37. <source>: Specifies multiple media resources for <audio> and <video> elements.
  38. <canvas>: Defines a container for graphics, typically used with JavaScript to draw graphics, animations, or interactive content.
  39. <svg>: Defines a container for scalable vector graphics.
  40. <map>: Defines a client-side image map, allowing clickable regions on an image to trigger actions.

Leave a Reply

Your email address will not be published. Required fields are marked *