```html <h1>This is Heading 1</h1> <h2>This is Heading 2</h2> <h3>This is Heading 3</h3> <h4>This is Heading 4</h4> <h5>This is Heading 5</h5> <h6>This is Heading 6</h6> ```
Paragraphs and Text Formatting
```html <p>This is a <strong>bold</strong> paragraph.</p> <p>This is an <em>italic</em> paragraph.</p> <p>This is a <u>underlined</u> paragraph.</p> <p>This is a <mark>highlighted</mark> paragraph.</p> <p>This is a <ins>inserted</ins> paragraph.</p> <p>This is a <del>deleted</del> paragraph.</p> ```
```html <dl> <dt>Term 1</dt> <dd>Description of term 1.</dd> <dt>Term 2</dt> <dd>Description of term 2.</dd> </dl> ```
Division and Span
```html <div>This is a division.</div>
<p>This is a span within a paragraph <span style="color: red;">highlighted text</span>.</p> ```