HTML Text Formatting Tutorial - Small Text
Description:
How to make small text in an html page.
Code:
<html>
<body>
This is normal text.
<small>This is small text.</small>
This is normal and <small>this is small</small> text.
</body>
</html>
Play with the code:
See working example:
Explanation:
To make small text in an html page, surround the text you want small in the <small></small> tags.
See Also:
HTML: Html, Body, Small
|