JSFiddle - React, Tailwind, and code Playground

by pichowskii

HTML

<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="utf-8" />
    <title>HTML Text Formatting Tags</title>
</head>
<body>
    <p><b>This text is bold text</b></p>
    <p><strong>This text is strong text</strong></p>
    <p><i>This text is italic text</i></p>
    <p><em>This text is emphasized text</em></p>
    <p>This is<sub>subscript</sub> text</p>
    <p>This is <sup>superscript</sup> text</p>
</body>
</html>