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
EasyYou 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>This lesson includes a short quiz. Start the lesson to answer it and track your progress.
All lessons in Fundamentals
2Text and Formatting
HeadingsParagraphsLine BreaksBold and Italic TextBold and Italic AgainRecap - Formatting8Forms and Inputs Part 1
Form BasicsText InputsInput AttributesPassword FieldLabels for InputsRecap - Basic Form11Event Registration Page
Project OverviewHeader Section9Forms and Inputs Part 2
Radio ButtonsCheckboxesDropdownsButtonsButtons in FormsRecap - Forms #1Recap - Forms #2