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