```
### Links
```html
This is a link
```
### Images
```html
```
### Lists
#### Ordered List
```html
First item
Second item
Third item
```
#### Unordered List
```html
First item
Second item
Third item
```
### 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