Portfolio
- Update any post content or page content as you continue customizing your portfolio–specify any changes made in your post.
- Update Header
- Complete Footer
- Create additional menu(s) for use elsewhere on your website–post URL
- Set up additional pages: About Me page, Portfolio/Works page & Contact page (with menu items & minimal content).
- Confirm Contact form works (ask classmate to try your form & screenshot it & add to your post)
HTML/CSS Practice
W3S
CodePen
Add the following code to your CCS stylesheet in Codepen– Note what the CSS changes in your website.
#navigation {
/* 29. Expand the menu to stretch horizontally across the page. */
width: 100%;
/* 30. Set the menu to stay at the top when the user scrolls down the page. */
position: fixed;
top: 0;
/* 31. Position the menu to cover underlying content. */
z-index: 2;
/* 32. Space the menu items evenly with gaps on either end. */
display: flex;
justify-content: space-around;
/* 33. Give the menu links some breathing room. */
padding: 1em;
}
#logo {
/* 34. Adjust the logo size. */
font-size: 1.3em;
}
Post
- Subject: Task 9-yourname
- Category: Task 9
- Codepen URL
- Portfolio URL as a clickable link
- Screenshot of Contact form email sent to you by classmate.
- Description of any significant changes/updates you have made to content, layout styling.