AI‐09 - Code-the-Dream-School/intro-to-programming-2025 GitHub Wiki
On the index.html
file:
- Add a navigational header menu to your webpage using the
<nav>
element. - Add two
<section>
elements:- One
<section>
element that contains: A<h2>
header containing the word "Skills". The section should have an id attribute equal to "Skills". The section content can be empty for now. - One
<section>
element that contains: A<h2>
header containing the word "Projects". The section should have an id attribute equal to "Projects". Then, add an empty<ul>
element in this section.
- One
- The navigation menu should include a link to each of your elements in your file (i.e. "About", "Experience", "Skills", "Projects", "Connect").
On the index.css
file:
- Change the layout of your "Experience" section to rows and columns so items are displayed in a better layout. Flexbox and/or Grid should be used to accomplish this.
- Update the "Connect" section to use Flexbox to improve the layout of your social media icons or links
- As a stretch goal (optional): Make the header sticky/fixed on the page.