A simple webpage with quick links for parents and guardians.
All the links are stored in the index.html file in a JavaScript array called links (starting around line 110).
- Find the category where you want to add the link (e.g., "Key Resources", "Apps & Tools")
- Inside that category's
items: [ ]array, add a new entry like this:
{
icon: 'fa-solid fa-link',
title: "Your Link Title",
url: "https://example.com",
description: "Brief description of what this link does.",
}Important: Don't forget the comma after the } if there are more items after it!
Find the link you want to change and edit its title, url, or description.
Find the link and delete the entire { ... }, block (including the comma).
Icons use Font Awesome. To change an icon:
- Visit fontawesome.com/icons
- Find an icon you like
- Copy the class name (e.g.,
fa-solid fa-calendar) - Replace the
icon:value
Add a new object to the links array:
{
category: "New Category Name",
notes: "Optional subtitle or notes.",
items: [
// your links here
]
},- Missing commas: JavaScript needs commas between items in the array. If the page breaks, check for missing commas.
- Quotes: Use matching quotes (
"..."or'...') around text. Don't mix them. - Testing changes: Open
index.htmlin a web browser to see your changes. Refresh the page to see updates.