Monday, December 17, 2012

Text Formatting in HTML 5

<!DOCTYPE html> 
<html>
    <head>
        <title>
            HTML Comment
        </title>
    </head>
    <body>
        <p><b>bold Text</b></p>
        <p><i>Italic Text</i></p>
        <p><u>underline in Text</u></p>
        <p><code>Computer Code</code></p>
        <p><strike>Hello world</strike></p>
        <p><em>Emphasized Text</em></p>
    </body>
</html>

No comments:

Post a Comment