HTML Task-4

Chapter:

HTML Formatting
HTML Quotations
HTML Comments
    Link: w3schools


    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>HTML Task-4</title>
    </head>

    <body>
       
        <!--Here are some formatting examples-->
        <p><b>This text is bold.</b></p>
        <p><i>This text is italic.</i></p>

        <p>Here is a quote from w3schools:</p>

        <blockquote cite="https://www.w3schools.com/default.asp">
            W3Schools is optimized for learning, testing, and training.
            Examples might be simplified to improve reading and basic
            understanding. Tutorials, references, and examples are constantly
            reviewed to avoid errors, but we cannot warrant full correctness
            of all content.
        </blockquote>

    </body>

    </html>





Comments