<!-- HTML Example -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Sample Document with Text Styling</title>
</head>
<body>

    <h1>Sample Text Styling</h1>
    <p>Here is an example of <strong>strong</strong>, <em>emphasized</em>, and <mark>highlighted</mark> text.</p>
    <p>Check out this <del>old text</del> and <ins>new text</ins> in the document.</p>
    <p>This is some <sup>superscript</sup> and <sub>subscript</sub> content.</p>

</body>
</html>