Why use <small> ?
When we need to write some word to show that the size will be small inside a paragraph tag or other tags. Then used <small> . How to use it <small> Text which we want to make size small </small>
Syntax:
<p>
Hay <small> how are you?</small>. Are you in here????
</p>
Example:
<!DOCTYPE html>
<html >
<head>
<title>Basic get in </title>
</head>
<body>
<p>
Hay <small> how are you?</small>. Are you in here????
</p>
</body>
</html>
Output:
Post a Comment