Blog Project: About Me

HTML Fundamentals
HTML Basics
Blog Project: About Me
50
1/1
   

Formatting Text



Let's get back to our blog project.
The About Me section will contain a heading that's wrapped in a <h1> tag, along with two paragraphs that format text using the tags you've just learned.
Let's take a look at the code:
<h1><span>About Me</span></h1>
<p>
Hey! I'm <strong>Alex</strong>. Coding has changed my world ...
</p>
<p class="quote">"Declare variables, not war"</p>
Try It Yourself

You may have noticed that we've also used some CSS to add colors and styles to the page. When you complete HTML, we strongly recommend our free CSS Tutorial!
TASK:
1. Create your own About Me section by changing the text.
2. Play around with the code; experiment with formatting text.

Comments