Nesting tags

Notes:

How nesting of tags in HTML effect while formatting a text?

HTML - Effect of nesting tags :
In HTML we can nest (i.e place one tag inside another tag) tags.
Nesting of tags is helpful when we want to apply more than one
styles on the single content. In this tutorial we have explained how do we display a single content in bold, italic as well as underlined.
We discuss what order we have to follow when we need to nest tags.

Example code:
<html>
<head>
<title>Nesting of tags</title>
</head>
<body>
Hi <b><i><u>HTML!</u></i></b> <br/>
</body>
</html>

Interview Questions: