HTML Text Formatting Tutorial - Combining Text Formatting
Description:
How to combine text formatting tags in an html page.
Code:
<html><body>
This is normal text. <br/><b>This is bold text.</b><br/><i>This is italic text.</i><br/><u>This is underlined text.</u><br/>
This is normal and <b><i><u>this is bold, italic and underlined</u></i></b> text.<br/>
This <b>is</b><i>another</i> example of <u>combined <i>text</i> formatting</u>.
</body></html>
Play with the code:
See working example:
Explanation:
You can combine the text formatting in the way you like it, just follow the rule of opening and closing html tags (first open - last closed).