# HTML Cheatsheet ## Basic Structure ```html Document ``` ## Common Tags ### Headings ```html

This is a Heading 1

This is a Heading 2

This is a Heading 3

This is a Heading 4

This is a Heading 5
This is a Heading 6
``` ### Paragraphs ```html

This is a paragraph.

``` ### Links ```html This is a link ``` ### Images ```html Description of image ``` ### Lists #### Ordered List ```html
  1. First item
  2. Second item
  3. Third item
``` #### Unordered List ```html ``` ### Forms ```html
``` ## Text Formatting ### Bold ```html This text is bold ``` ### Italic ```html This text is italic ``` ### Underline ```html This text is underlined ``` ### Strikethrough ```html This text is strikethrough ``` ## Tables ```html
Header 1 Header 2
Row 1, Cell 1 Row 1, Cell 2
Row 2, Cell 1 Row 2, Cell 2
``` ## Media ### Audio ```html ``` ### Video ```html ``` ## Div and Span ### Div ```html
This is a block-level element
``` ### Span ```html This is an inline element ``` ## Semantic HTML ### Article ```html

Article Title

Content of the article goes here.

``` ### Section ```html

Section Title

Content of the section goes here.

``` ### Header, Footer, Nav ```html

Site Title

```