AI 09 - Code-the-Dream-School/intro-to-programming-2024 GitHub Wiki

Add "boilerplate" HTML code to your index.html file.

  1. Define the document type at the top of the file by typing in on line 1.
  2. Now wrap your Name, About, Experience, and Connect sections and their content that you built last week in an element
  3. Before your name, but after the opening tag, insert a element.
  4. Inside the element, add a <title> element to title your webpage
  5. Below your <title> element, add additional elements (at least two) from the meta elements you've learned about
  6. After the closing tag, begin the body of your page by adding the opening element.
  7. Close the body of your page by adding the closing element between your last social media link and the closing tag
  8. Make sure all of the content you wrote last week is wrapped in the tags
  9. If you did not use any HTML code last week, wrap your content in element tags now. As a reminder you should have:
    1. Name in an h1 element
    2. About in an h2 element
    3. The paragraph about you in a p element
    4. Experience in an h2 element
    5. Your listed experiences in a ul element, with each individual item in a li element
    6. Connect in an h2 element
    7. Your social media links in a elements, and you can also wrap them in ul and li tags if you wish
  10. Wrap each of the About, Experience, and Connect sections in a element.
  11. Give each of these sections an "id" property with the same name as the section. Example: The About section would look like this:
<section id="About">
   <h2>About</h2>
   <p>This is a paragraph about me.  Here's more info about me.</p>
</section>

STRETCH GOAL (optional): Feel free to use even more HTML elements by adding images, navigation menus, etc.

⚠️ **GitHub.com Fallback** ⚠️