# HTML5 Cheat Sheet ## Table of Contents 1. [Document Structure](#document-structure) 2. [HTML Basic Elements](#html-basic-elements) 3. [Text Formatting](#text-formatting) 4. [Links and Navigation](#links-and-navigation) 5. [Multimedia Elements](#multimedia-elements) 6. [Embedded Content](#embedded-content) 7. [Forms](#forms) 8. [Semantic Elements](#semantic-elements) 9. [APIs](#apis) ## Document Structure ```html Document Title ``` ## HTML Basic Elements ### Heading Tags ```html

This is the main Heading 1

This is the second largest Heading 2

This is a much smaller Heading 6
``` ### Paragraph ```html

This is a paragraph.

``` ### Lists #### Unordered List ```html ``` #### Ordered List ```html
  1. Item 1
  2. Item 2
``` ### Links ```html Visit Example ``` ## Text Formatting ### Bold ```html This is bold text ``` ### Italic ```html This is italicized text ``` ### Underline ```html This text is underlined ``` ## Links and Navigation ### Anchor Tag ```html Visit Example ``` ### Navigation ```html ``` ## Multimedia Elements ### Image ```html Description of the image ``` ### Audio ```html ``` ### Video ```html ``` ## Embedded Content ### Iframe ```html ``` ### Embedded Audio ```html ``` ## Forms ```html
``` ## Semantic Elements ### Article ```html

Article Title

Article content goes here.

``` ### Section ```html

Section Title

Section content goes here.

``` ### Header and Footer ```html

Page Header

``` ## APIs ### Geolocation ```html ``` ### Local Storage ```html ```