<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap Text Formatting</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script> </head> <body> <div class="m-4"> <p><b>This text is bold</b></p> <p><code>Code for a computer</code></p> <p><em>This text is highlighted.</em></p> <p><i>This text is bold.</i></p> <p><mark>The highlighted text here</mark></p> <p><small>Little text here</small></p> <p><strong>Strong text emphasis is used here</strong></p> <p>This is <sub>subscripts</sub> and <sup>superscripts</sup></p> <p><ins>The document includes this content.</ins></p> <p><del>The document has been updated to remove this text.</del></p> </div> </body> </html>