Bold, Italic, Underline in HTML – Examples & Syntax

Himmat Kumar Apr 10, 2025, 5:07 PM
HTML
Views 831
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

html-br-and-hr-tags
1073 viewsHTML
Himmat Kumar • Apr 8, 2025, 2:34 PM

HTML <br> and <hr> Tags Explained with Examples and Bes...

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

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

html-attributes-guide
225 viewsHTML
Himmat Kumar • Aug 18, 2024, 10:58 PM

Understanding HTML Attributes: A Beginner's Guide

html-performance-tricks-2025
1132 viewsHTML
Himmat Regar • Jun 2, 2025, 7:02 PM

HTML Performance Tricks 2025 – Preload, Async/Defer, Cr...

responsive-meta-seo-friendly-markup-2025
435 viewsHTML
Himmat Regar • Jun 23, 2025, 4:23 PM

Mastering Responsive Meta & SEO-Friendly Markup in 2025

html-forms-complete-guide
1252 viewsHTML
Himmat Regar • Jun 9, 2025, 5:20 PM

The Ultimate Guide to HTML Forms: Inputs, Select Menus,...

understanding-html-elements
234 viewsHTML
Himmat Kumar • Jul 25, 2024, 1:09 PM

Understanding HTML Elements

html-tags
447 viewsHTML
Himmat Kumar • Oct 19, 2023, 2:45 AM

HTML Tags

glassmorphism-login-form
241 viewsHTML
Himmat Kumar • Mar 4, 2025, 1:15 AM

Glassmorphism Login Form: A Modern Design Tutorial

html-headings-guide
241 viewsHTML
Himmat Kumar • Aug 18, 2024, 11:31 PM

Understanding HTML Headings: A Simple Guide