Bold, Italic, Underline in HTML – Examples & Syntax

Himmat Kumar Apr 10, 2025, 5:07 PM
HTML
Views 853
Blog Thumbnail

Today cover three HTML tags that are used the most: <b>, <i>, and <u>. These tags perform basic text styling functions which can be quite useful.

🔸 Bold Text – <b>

Using the <b> tag allows you to make the text bold without adding importance. (For importance use <strong>.)

      <b>This text is bold</b>
    

Output:

This text is bold

🔹 Italic Text – <i>

The <i> tag allows you to italicize the text for stylistic or alternative voice.

      <i>This text is italic</i>
    

Output:

This text is italic

🔻 Underlined Text – <u>

The <u> tag underlines the text. The text below is also marked for emphasis, but it is recommended to use CSS instead.

      <u>This text is Underlined</u>
    

Output:

This text is Underlined

🧩 Combined Formatting Example

You can perform multiple styles through combined tags.

      <b><i><u>Bold, Italic and Underlined</u></i></b>
    

Output:

Bold, Italic and Underlined

📌 Summary

  • <b> makes the text bold
  • <i> makes the text italic
  • <u> underlines the text
  • Combine to create formational magic

Comments

Please login to leave a comment.

No comments yet.

Related Posts

hyperlinks-and-media-embedding-2025
678 viewsHTML
Himmat Regar • Jun 23, 2025, 4:37 PM

Hyperlinks & Media: Embedding Content the Right Way in ...

html-seo-faq-2025
631 viewsHTML
Himmat Regar • Jun 23, 2025, 4:41 PM

HTML & SEO FAQ 2025: Answers to the Web’s Most-Asked Qu...

basic-structure-of-an-html-document
1221 viewsHTML
Himmat Kumar • Apr 5, 2025, 7:10 AM

Basic Structure of an HTML Document

semantic-html-complete-guide
1415 viewsHTML
Himmat Regar • Jun 9, 2025, 5:37 PM

Semantic HTML Explained: Why <header>-<footer> & Friend...

getting-started-with-html-setup-edit-run-code-in-browser
384 viewsHTML
Himmat Kumar • Jul 25, 2024, 1:09 PM

Getting Started with HTML: Setup, Edit, and Run Your Co...

html-paragraph-tag-guide
1258 viewsHTML
Himmat Kumar • Apr 8, 2025, 1:50 PM

HTML Paragraph Tag – Complete Guide with Examples

html-images-responsive-media-guide
1212 viewsHTML
Himmat Regar • Jun 2, 2025, 6:46 PM

Images & Responsive Media in HTML – Formats, <picture>,...

html-css-js-online-compiler
394 viewsHTML
Himmat Regar • May 30, 2025, 6:54 AM

HTML CSS JS Online Compiler – Best Free Tools to Code a...

what-is-html-full-explanation
502 viewsHTML
Himmat Kumar • Oct 13, 2023, 11:40 PM

What is HTML? Full Explanation and Guide

modern-login-form-html-css
280 viewsHTML
Himmat Kumar • Mar 4, 2025, 12:57 AM

Creating a Modern Login Form with HTML & CSS