Skip to content
Permalink
b2d24ed315
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 25 lines (19 sloc) 687 Bytes

DOM Playground

Instructions

Modify js/fix-the-page.js to fix the page design and layout. When complete, your page should look like the original, "Wicked Grove" design.

Rules

  1. You may not modify the HTML file.
  2. You may not modify the CSS file.

You can use the original HTML and CSS files for reference.

What You Need to Know

This assignment is designed to test your knowledge of the following JavaScript features:

  • document.querySelector()
  • document.createElement()
  • element.appendChild()
  • element.innerHTML
  • element.style
  • element.attribute
  • Array.forEach()
  • The DOM
  • Object Literals {}
  • and more ...!