diff --git a/js/fix-the-page.js b/js/fix-the-page.js index 2fe5133..bf8aac6 100644 --- a/js/fix-the-page.js +++ b/js/fix-the-page.js @@ -20,28 +20,31 @@ let resources = [ { title: "View the source CSS file of the currently-viewed design.", href: "css/style.css", - innerHTML: "View This Design’s CSS" + linkText: "View This Design’s CSS" }, { title: "Links to great sites with information on using CSS.", href: "http://www.mezzoblue.com/zengarden/resources/", - innerHTML: "CSS Resources " + linkText: "CSS Resources " }, { title: "A list of Frequently Asked Questions about the Zen Garden.", href: "http://www.mezzoblue.com/zengarden/faq/", - innerHTML: "FAQ " + linkText: "FAQ " }, { title: "Send in your own CSS file.", href: "http://www.mezzoblue.com/zengarden/submit/", - innerHTML: "Submit a Design" + linkText: "Submit a Design" }, { title: "View translated versions of this page.", href: "http://www.mezzoblue.com/zengarden/translations/", - innerHTML: "Translations" + linkText: "Translations" }, ]; +// Hint: Loop over the resources array to build each list item. +// E.g.,
  • someText
  • +