20.4. Exercises: HTMLΒΆ

Complete the HTML file for this simple web page. Add lines to index.html that do the following.

  1. Add a h1 to the page that says "Why I Love Web Development".

    Check your solution.

  2. Add an ordered list to the page with 3 reasons why you love web development.

  3. Add a link to this page below your list.

    Check your solution.

  4. Add a paragraph about the website you want to make with your web development superpowers!

This code block gives you a rough outline for how it might look.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
<!DOCTYPE html>
<html>
   <head>
   </head>
   <body>
      <!-- h1 goes here --->
      <!-- ol goes here --->
      <!-- a goes here --->
      <!-- p goes here --->
   </body>
</html>

Note

repl.it has other HTML inside of the index.html file you will be editing. You should only add code, NOT delete!

In addition, when clicking on your link to make sure it works, right-click to open in a new tab.