Recap - Formatting
Part of the Fundamentals section of Coddy's HTML journey — lesson 11 of 60.
Challenge
EasyCreate an HTML document that includes all the formatting elements we've learned so far:
- A main heading (
<h1>) with the text "Formatting Recap" - A paragraph (
<p>) that says: "This is a paragraph with bold and italic text." Make "bold" bold using<strong>or<b>and "italic" italic using<em>or<i>. - Another paragraph that says: "Here is a line break:" followed by a line break (
<br>) and the text "This is a new line."
Try it yourself
<!DOCTYPE html>
<html>
<body>
<!-- Write code here -->
</body>
</html>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