Preformatted, big & small text

Notes:

HTML pre tag | HTML big tag | HTML small tag :

We use html pre tag to display the content written as it is in the notepad.We use html big tag to display the content in little bit bigger size.We use html small tag to display the content in little smaller size.
html pre tag : is a paired tag, stands for pre-formatted text.
html big tag : is a paired tag.
html small tag: is a paired tag.

Example code:
<html>
<head>
<title>HTML pre, big and small tags</title>
</head>
<body>
<pre>
* * *
* * *
* * *
*
*
*
</pre>
Hi <big>HTML!</big> <br/>
Hi <small>HTML!</small> <br/>
</body>
</html>

Interview Questions: