90.6k views
0 votes
Part 1: Create a Web Page Copy and paste this code into an editor and complete these steps: About Me Web Page Your Name One paragraph about yourself. Three of my favorite things are: Favorite Item 1 Favorite Item 2 Favorite Item 3 Use the HTML Cheat Sheet and the skills you have learned so far in this lesson to practice writing HTML code in the text editor. Replace Your Name with your actual name and format with . Replace One paragraph about yourself with a paragraph about yourself. Replace the favorite items with your three favorite things. Format your three favorite things into a numbered list. Once you have created your page, copy and paste your HTML code from the Code View tab here:

1 Answer

6 votes

Answer:

<h1>About Me Web Page</h1>

<center><h2>(name)</h2></center>

<h3>Three Of My Favorite Things Are:</h3>

<ol>

<li>(Favorite item)</li>

<li>(Favorite item)</li>

<li>(Favorite item</li>

</ol>

<p>(Paragraph about myself</p>

User Ankh
by
5.2k points