🚀 LEVEL UP TO SENIOR:Unlock 500+ Advanced Practical Challenges & Exercises.
🎓 COURSERA PARTNER:Earn professional Google, Meta, and IBM certificates to supercharge your resume.

Day 2: Paragraphs & Formatting

HTML Masterclass
Current Task

Objective

Today we focus on text formatting.

Step 1: Inside a <body> tag, create a paragraph <p>.

Step 2: Add the text "This is a bold statement." but wrap the word "bold" in <strong> tags.

Step 3: Create a second paragraph with "This is italicized text." and wrap "italicized" in <em> tags.

index.html
<body> <p>This is a <strong>bold</strong> statement.</p> <p>This is <em>italicized</em> text.</p> </body>

* Hint: Correct characters turn green, incorrect ones turn red.

Live Preview
🖼️

Verify your code to see the preview