Skip to content
    HTML Formatting@careerkarma
    index.html
    script.js
    style.css
    Config files
    .replit
    replit.nix
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width">
    <title>repl.it</title>
    <style>
    p u {
    text-decoration: underline red wavy;
    }
    </style>
    </head>
    <body>
    <h1>HTML Formatting Text Appearance</h1>
    <h2>Bold:</h2>
    <h3>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;b> tag:</h3>
    <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This text is <b>bold</b></p>
    <h3>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong> tag:</h3>
    <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This text is also <strong>bold</strong></p>
    <h2>Italics:</h2>
    <h3>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;i> tag:</h3>
    <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This text is in <i>italics</i></p>
    <h3>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;em> tag:</h3>
    <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This text is also in <em>italics</em></p>
    <h2>Underline:</h2>
    <h3>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;u> tag:</h3>
    <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This is a <u>mispelled</u> word</p>



    <script src="script.js"></script>
    </body>
    </html>