How do i make the headings bold in html?

Closed
MasterMind - Oct 18, 2009 at 08:30 AM
samheart Posts 4 Registration date Thursday October 15, 2009 Status Member Last seen October 19, 2009 - Oct 19, 2009 at 03:59 AM
Hello,
how do i make the headings bold in html?
Related:

2 responses

Blocked Profile
Oct 18, 2009 at 08:39 AM
Dear Sir,

add <b> at the start

and </b> at the end.

Thanks.
0
samheart Posts 4 Registration date Thursday October 15, 2009 Status Member Last seen October 19, 2009
Oct 19, 2009 at 03:59 AM
Hi
here is a sample

<html>
<title>
Sample
</title>
<body>
<h1><b>This is a bold text </b></h1>
<h2>This is a simple text</h2>
</body>
</html>

Just copy this code and paste it into the notepad and save the file with sample.html
Here <b> is use for bold text.

Thnkx
0