MyBB Codes

Full Version: How to make bold text in html
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In the html code
<html>
<b> THE TEXT </b>
</html>
so <b> </b> are the bold codes for html
isnt it cool Big Grin?
Text can be accented in many different ways. The first of these is BOLD.
Bold is symbolized by a <b> in front of the text you want bold, and a </b> at the end of the area you want bold. Inserting text into your file that is surrounded by the bold tag will accentuate the text.

Try following program.
<!--<html>
<head>
<title>
</title>
</head>
<body bgcolor="#ffff00">
<font color="#0000ff">
<h1 align="center"> My very first html page</h1>
<font size="6">
Welcome to my html page <br>
<center>
where I am showing my html skills
</center>
</font>
<p align="right">
<font size="4">
I want to learn everything I can about html
</font>
</p>
<div align="left"> So I can make cool web pages</div>
</font>
</body>
</html>
-->
<b></b>

Are more simple to use... xP
Here is the answer to your question that

<HTML>
<BODY>
<b> TEXT </b>
</BODY>
</HTML>
There are so many tags in HTML

<b>...</b> Bold
</br> for Break
</hr> Horizontal Line
<P>...</p> Paragraph
using <b>...</b> and
Use Cascading Style Sheets for font styles and sizes.
Using CSS file,
Using <b> ... </b>
Using <strong> ... </strong>
<center><b><font color="#0080FF" size="5" face="splash">Hello People!!</font></b></center>

xD!
there are two way to make bold text
1. <b>TEXT</b>
2.<strong>TEXT</strong>
Reference URL's