Here in this post i will teach you that how to use bold,italic and underline tag in html.If you want your text in bold, italic or in underline than use these tags.
Copy the above Code and Paste in your Notepad or Notepad++ and saves the code with .html like abc.html or whatever you want and run the code.
- For Bold Text <b>Your Text </b>
- For Italic Text <i>Your Text </i>
- For Underline Text <u>Your Text </u>
These tags are work in the body section only i.e. between <body>and</body> tag only.
The above tags are use in the example given below
<html>
<head>
<title>
How To 99
</title>
</head>
<body>
<b>Bold-How To 99</b>
<i>italic-How To 99</i>
<u>underline-How To 99</u>
</body>
</html>
Copy the above Code and Paste in your Notepad or Notepad++ and saves the code with .html like abc.html or whatever you want and run the code.