Exercises: HTML

In this course, we will mostly use Firefox as our browser. If you haven’t installed Firefox, you can get it from Mozilla . Other browsers have good developer tools as well (Chrome, in particular) but we’re going to stick with Firefox. If you are more comfortable with another browser, you’ll find that most of the developer tools functionality exists in other browsers’ dev tools as well.

Complete the HTML file for this simple web page. Open up javascript-projects/html/exercises. 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>

To see your work, open up index.html with Firefox.