Menu
Coddy logo textTech

Bold and Italic Again

Part of the Fundamentals section of Coddy's HTML journey — lesson 10 of 60.

There is even another way to make bold and italic text! using the <b> tag and <i> tag (accordingly).

<p>This is normal text. <b>This is bold text</b>. <i>This is italic text</i>.</p>
challenge icon

Challenge

Easy

You are given an HTML document with a paragraph, style the paragraph using bold and italic, use <b> and <i> (use both of them!)

Cheat sheet

Use <b> for bold text and <i> for italic text:

<p>This is normal text. <b>This is bold text</b>. <i>This is italic text</i>.</p>

Try it yourself

<!DOCTYPE html>
<html>
    <body>
        <p>HTML is fun to learn!</p>
    </body>
</html>
quiz iconTest yourself

This lesson includes a short quiz. Start the lesson to answer it and track your progress.

All lessons in Fundamentals