Advertisement
xxmakarovxx

HTML TAGS

May 28th, 2023
110
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 1 0
  1. <html>: Represents the root element of an HTML document.
  2. <head>: Contains meta-information about the HTML document.
  3. <title>: Specifies the title of the HTML document.
  4. <body>: Represents the content of an HTML document.
  5. <h1> to <h6>: Represents headings of different levels, with <h1> being the highest and <h6> being the lowest.
  6. <p>: Defines a paragraph.
  7. <a>: Creates a hyperlink to another web page or resource.
  8. <img>: Inserts an image into the HTML document.
  9. <div>: Represents a division or section of the HTML document.
  10. <span>: Defines an inline section within a document.
  11. <ul>: Represents an unordered list.
  12. <ol>: Represents an ordered list.
  13. <li>: Defines a list item within an ordered or unordered list.
  14. <table>: Defines a table.
  15. <tr>: Represents a table row.
  16. <td>: Represents a table cell.
  17. <th>: Represents a header cell in a table.
  18. <form>: Represents an HTML form for user input.
  19. <input>: Creates an input field within a form.
  20. <button>: Defines a clickable button.
  21. <label>: Represents a label for an input field.
  22. <textarea>: Defines a multiline input field.
  23. <select>: Creates a drop-down list.
  24. <option>: Represents an option within a drop-down list.
  25. <iframe>: Embeds another HTML document within the current document.
  26. <audio>: Embeds audio content.
  27. <video>: Embeds video content.
  28. <head>: Contains metadata about the document.
  29. <style>: Defines the style information for a document.
  30. <script>: Embeds or references an external JavaScript code.
Tags: html
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement