HTML Elements

Welcome to the HTML elements page!

Common HTML Elements

1. <html>
Root element of HTML.
2. <head>
Metadata container.
3. <body>
Visible content.
4. <title>
Page title.
5. <h1>-<h6>
Headings.
6. <p>
Paragraph.
7. <a>
Hyperlink.
8. <img>
Image embed.
9. <div>
Block container.
10. <span>
Inline container.
11. <ul>
Unordered list.
12. <ol>
Ordered list.
13. <li>
List item.
14. <br>
Line break.
15. <hr>
Horizontal line.
16. <strong>
Strong text.
17. <em>
Emphasized text.
18. <table>
Table container.
19. <tr>
Table row.
20. <td>
Table cell.
21. <th>
Table header cell.
22. <form>
User input form.
23. <input>
Input field.
24. <label>
Form label.
25. <button>
Clickable button.
26. <select>
Dropdown list.
27. <option>
Dropdown item.
28. <link>
External resource.
29. <meta>
Metadata element.
30. <script>
JavaScript embed.

Dawson Cowles