Text formatting learn HTML


Text formatting learn HTML
this is example for text formatting:

<html>
    <body>
        <b>this line is bold</b>
        <br>
        <big>this line is big</big>
        <br>
        <em>this line is emphasized</em>
        <br>
        <i>this line is italic</i>
        <br>
        <small>this line is small</small>
        <br>
        <strong>this line is strong</strong>
        <br>
        <sub>this line is subscripted</sub>
        <br>
        <sup>this line is superscripted</sup>
        <br>
        <ins>this line is inserted</ins>
        <br>
        <del>this line deleted</del>
    </body>
</html>


The paragraph element learn HTML

The paragraph element learn HTML
this is example for paragraph element

<html>
    <body>
        <p>this is paragraph.</p>
        <p>this is new paragraph</p>
        <p>this is <br> a new line</p>
    </body>
</html>



CCNA

More »

HTML

More »