AI‐FINAL - Code-the-Dream-School/intro-to-programming-2025 GitHub Wiki
- Project should have, as minimum,
readme.md,index.html,index.cssandindex.jsfiles.
On the index.html file:
- There should be proper boilerplate code.
- As a stretch goal (optional): There should be a font-family or Google font.
- The
index.cssandindex.jsfiles should be properly linked. - There should be a
<h1>heading with the student's name. - There should be a navigation menu working with internal links to the following sections:
About,Experience,Skills,Projects,Leave a Message. Optionally, there should also be a link to theConnectorContact Mesection. - As a stretch goal (optional): A dark mode toggle switch to change coloring of background and text between default and dark mode.
- On the
Aboutsection:- There should be a
<h2>heading. - There should be one or more paragraphs
<p>of text. - As a stretch goal (optional): there should be a photo with
altattribute for accessibility.
- There should be a
- On the
Experiencesection:- There should be a
<h2>heading. - There should be a list of previous work or experience.
- There should be a
- On the
Skillssection:- There should be a
<h2>heading. - There should be a list of skills, inserted using JavaScript from the
index.jsfile.
- There should be a
- On the
Projectssection:- There should be a
<h2>heading. - There should be a list of GitHub repositories, fetched using the GitHub API and inserted using JavaScript from the
index.jsfile.
- There should be a
- On the
Leave a MessageandMessagessection:- There should be a
<h2>heading. - The form found on
Leave a Messagesection should have: Three fields (name, email address and message) and a submit button.
- There should be a
- On the
Messagessection:- There should be a
<h2>heading. - There should be a list of messages (once the form has been given inputs and submit button clicked).
- As a stretch goal (optional): Conditionally render the
<h2>header and section content of theMessagessection if there are no messages.
- There should be a
- On the
ConnectorContact Mesection:- There should be a clickable link to email the student.
- There should be at least two social media links to the student's profile pages.
- As a stretch goal (optional): Use icons or images in place of text string links for your email and 2+ social media links.
- If
ConnectorContact Mesections don't exist, social media links should be in thefooterelement of your page as icons/images.
- On the
footer:- There should be a copyright logo, current year and student's name inserted using JavaScript from the
index.jsfile. - There should be an email and 2+ social media icon/image links (ONLY IF THE PAGE DOESN'T HAVE A CONNECT OR CONTACT ME SECTION).
- There should be a copyright logo, current year and student's name inserted using JavaScript from the
On the index.css file:
- Comments in code as appropriate.
- At least two media queries, each media query should handle 2 property changes to at least 3 HTML elements.
- As a stretch goal (optional): Navigation menu element set as sticky/fixed element that stays in place when user scrolls down.
- As a stretch goal (optional): Navigation menu converted to a hamburger menu on smaller devices via media queries.
Experiencesection list should be styled in grid or flexbox layout.Skillssection list should be styled in a grid or flexbox layout.Projectssection list should be styled like cards or use flexbox/grid layout.Messagessection list should be styled in a grid or flexbox layout.Connectsection list should be styled in a grid or flexbox layout.
On the index.js file:
- Comments in code as appropiate.
- There should be sections of code to accomplish the following:
- Insert the copyright symbol, current year, and student's name in the
footerof theindex.htmlfile. - Using an array, insert the array items as a list of skills in the
skillssection of theindex.htmlfile. - Using API Fetch, insert the names of the student's GitHub repositories into the
projectssection of theindex.htmlfile.
- Insert the copyright symbol, current year, and student's name in the
- As a stretch goal (optional): On each github repository name list item for the Project section, there should be a clickable link
<a>that takes the user to that repository. - As a stretch goal (optional): On each github repository list item, display additional information (like created date, description, etc).
- The
Leave a Messagesection's submit button should have an event listener that adds the form field inputs to theMessagessection. - The
Messagessection list's list items should have: Name of the message author as a clickable link to email the author, a message text and a remove button to delete the message from the list of messages. As a stretch goal (optionally), there should be an edit button for user to change one (or more) of the form inputs (name, email, message). - As a stretch goal (optional): Conditionally render the
<h2>header and section content of theMessagessection if there are no messages.