🔟

2.10 About Me Practice

2.10 About Me Practice

About Me

Instructions: Using all the knowledge you've learned so far, create an HTML webpage called About Me. Use a heading and paragraph tag to write a short paragraph about yourself and your life. Use at least 3 text formatting tags in the paragraph.
Template
<!-- About Me Using all of the knowledge you’ve learned so far, create an HTML webpage called About Me. Use a heading and paragraph tag to write a short paragraph about yourself and your life. Use at least 3 text formatting tags in the paragraph. --> <!DOCTYPE html> <html> <head> <title>About Me Practice</title> </head> <body> <!--Write code here--> </body> </html>
Solution
<!DOCTYPE html> <html> <head lang="en"> <title>About Me</title> <meta charset="utf-8" /> </head> <body> <h1>About Me</h1> <p> My name is Tony Stark. I'm a self-proclaimed billionaire, playboy, and philanthropist. You may have watched one of the movies about my superhero life called <i>Iron Man</i>. Personally, I don't think it captured the reality of my life, but it definitely <strong>made me look cool</strong>. <br /> Anyway, I spent a good chunk of my life fighting big bad guys as a member of the Avengers. Unfortunately, <del>I recently found out that I'm a fictional character</del>, so that definitely puts a damper on things... </p> </body> </html>
 
⚖️
Copyright © 2021 Code 4 Tomorrow. All rights reserved. The code in this course is licensed under the MIT License. If you would like to use content from any of our courses, you must obtain our explicit written permission and provide credit. Please contact classes@code4tomorrow.org for inquiries.