HTML/CSS - 2
HTML/CSS - 2: Headings & Paragraphs
Now let's build a simple "About Me" page. Use different heading sizes (<h1> to <h6>) and write a few paragraphs about yourself or a fictional character.
👀 Show Solution
<h1>About Me</h1> <h2>My Background</h2> <p>This is a paragraph about myself...</p> <h3>My Hobbies</h3> <p>Another paragraph here...</p>
