Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update fix-the-page.js
  • Loading branch information
bpd01001 committed Mar 4, 2024
1 parent 0d9214f commit 1e5f10c
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions js/fix-the-page.js
Expand Up @@ -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&#8217;s <abbr title=\"Cascading Style Sheets\">CSS</abbr>"
linkText: "View This Design&#8217;s <abbr title=\"Cascading Style Sheets\">CSS</abbr>"
},
{
title: "Links to great sites with information on using CSS.",
href: "http://www.mezzoblue.com/zengarden/resources/",
innerHTML: "<abbr title=\"Cascading Style Sheets\">CSS</abbr> Resources "
linkText: "<abbr title=\"Cascading Style Sheets\">CSS</abbr> Resources "
},
{
title: "A list of Frequently Asked Questions about the Zen Garden.",
href: "http://www.mezzoblue.com/zengarden/faq/",
innerHTML: "<abbr title=\"Frequently Asked Questions\">FAQ</abbr> "
linkText: "<abbr title=\"Frequently Asked Questions\">FAQ</abbr> "
},
{
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., <li><a href="someLink" title="someTitle">someText</a></li>


0 comments on commit 1e5f10c

Please sign in to comment.