About Me Section
Part of the Fundamentals section of Coddy's HTML journey — lesson 33 of 60.
Challenge
EasyThis is a continuation of your profile project! Let's build on the structure you've already created. Your page should now include three distinct sections, each wrapped in a
1. Header Section: A
2. Profile Picture: A
3. About Me Section: A
Ensure your HTML structure follows this order to pass the tests.
<div> tag:1. Header Section: A
<div> containing an <h1> with your name and a <p> with a short tagline.2. Profile Picture: A
<div> containing an <img> tag.3. About Me Section: A
<div> containing an <h2> with the text 'About Me' and a <p> tag sharing a little about yourself.Ensure your HTML structure follows this order to pass the tests.
Try it yourself
<!DOCTYPE html>
<html>
<body>
<!-- This is a continuation of your project. Please structure your page using the three sections below. -->
<!-- Header Section: Add an <h1> and a <p> tag inside this div -->
<div>
</div>
<!-- Profile Picture Section: Add an <img> tag inside this div -->
<div>
</div>
<!-- About Me Section: Add an <h2> and a <p> tag inside this div -->
<div>
</div>
</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