Basic Structure Tags
- <!DOCTYPE html> - Declares the HTML version
- <html> - Root element
- <head> - Metadata container
- <title> - Document title
- <body> - Main content
Text Formatting Tags
- <h1> to <h6> - Headings
- <p> - Paragraph
- <br> - Line break
- <hr> - Horizontal line
- <strong>, <b> - Bold
- <em>, <i> - Italic
- <u> - Underline
- <small>, <mark>, <sub>, <sup> - Other formatting
- <blockquote>, <pre>, <code> - Quotes and code
Links & Media
- <a> - Hyperlink
- <img> - Image
- <video>, <audio> - Media files
- <source>, <iframe>, <embed>, <object>, <param>
Grouping & Containers
- <div> - Block container
- <span> - Inline container
- <section>, <article>, <aside>, <header>, <footer>, <nav>
Lists
- <ul>, <ol>, <li> - Lists
- <dl>, <dt>, <dd> - Definition lists
Tables
- <table>, <tr>, <td>, <th>, <thead>, <tbody>, <tfoot>
- <caption>, <col>, <colgroup>
Forms
- <form>, <input>, <textarea>, <button>, <select>, <option>, <label>
- <fieldset>, <legend>, <datalist>, <output>
Meta & Head
- <meta>, <link>, <style>, <script>, <base>
Semantic HTML5
- <main>, <figure>, <figcaption>, <details>, <summary>, <time>
Deprecated Tags
- <font>, <center>, <marquee>, <big>, <tt>