Skip to content

Latest commit

 

History

History
45 lines (37 loc) · 1.31 KB

html_basics2.md

File metadata and controls

45 lines (37 loc) · 1.31 KB

HTML

Standard Template

<!DOCTYPE HTML>
<html>
  <head></head>
  <body></body>
</html>

Activities

Source: Coder

Cooking

Make a page of your favorite recipe. It should look similar to this:

pb&j

Include the following:

  1. A main heading
  2. A description
  3. An unordered list of ingredients
  4. An ordered list of directions
  5. Add an image below the main heading

Buzzfeed

Make your own BuzzFeed article consisting of 5 items. Your HTML code should include the following tags:

  • <h1> for the title of the article
  • <ol> for the ordered list
  • <h3> for the title of each list item
  • <img> for the image of item
  • <p> for the description of item

TripAdvisor

Make a one-page TripAdvisor for your favorite city.

  • City: <h1>
  • Top 5 Hotels: <ol>
  • Top 5 Things to Do: <ol>
  • Top 5 Restaurants: <ol> Include both the name and an image for each item. Clicking on either the name or image should link to the appropriate website.

Resources

  1. HTMLDog - HTML Tags
  2. Mozilla - HTML Attributes