Skip to content

udacity/cd14106-project-starter-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Building a Portfolio Homepage

Congratulations on completing all the lessons of the course! You're almost there! It’s time to put your newly acquired skills into practice by building the homepage for your portfolio site. This project will showcase your ability to create a responsive, accessible, and professional webpages.

You’ll build two key sections: an Intro Banner (featuring your photo and a short blurb) and a Latest Projects section. You’ll work from a provided wireframe to match the layout as closely as possible. Your site will be fully responsive across devices and meet A and AA accessibility standards.

By completing this project, you’ll demonstrate your proficiency with CSS methodologies, preprocessors, accessibility practices, and advanced CSS techniques, all while creating a polished addition to your portfolio.

Project Instructions

  1. Starter Code:

    • Download and unzip the provided starter code, which includes:
      • Dist Folder: Where your compiled CSS file (main.css) will live.
      • Src Folder:
        • img: Store all image files here. This folder has a placeholder image for your Introduction banner. You're welcome to use it, but are encouraged to find your own image, which better reflects your personality.
        • scss_less: Store all CSS preprocessor folders and files here. Rename this folder to match the preprocessor you are using (scss or less).
    • Download the wireframes to guide the website layout for desktop and mobile views.
  2. Folder Structure:

    • As per BEM methodology, your scss or less folder will contain base, blocks, and utils folders with a primary stylesheet that matches the name (see example folder structure below):
      • Base: Contains foundational styles such as resets, typography, and general element styles (e.g., for body, headings, links).
      • Blocks: Houses styles for individual components, each in its own file, following the BEM methodology (e.g., button.scss, header.scss).
      • Utils: Includes reusable helper styles like variables, mixins, and utility classes that support the design system.
    • Compile all preprocessor files into a single main.css file inside the dist folder.
  3. Intro Banner:

    • Content:
      • Include a background image for the banner.
      • Add a bio section with:
        • A profile image.
        • A main heading (e.g., "[Your Name]'s Web Development Portfolio").
        • A short paragraph describing yourself.
      • Note: If you don't feel comfortable using your own photo, you can use a placeholder image for the purpose of this project. Using a professional headshot can positively contribute to a developer's personal branding, but you don't have to make that decision just yet.
    • Responsive Behavior:
      • Align the profile image and text content side by side on larger screens.
      • Stack the profile image above the text content on mobile.
  4. Latest Projects Section:

    • Content:
      • Include a heading (e.g., "Latest Projects").
      • Add three project cards, each with:
        • An image (placeholder images are fine).
        • A title.
        • A short description.
      • Add a centered button below the cards that would link to a projects page.
    • Design:
      • Ensure the cards are equal in width and height.
      • Apply hover or tabbing transitions to project cards.
  5. Navigation Header:

    • Create a fixed navbar with projects, skills, resume, and contact links.
    • The navbar should:
      • Stick to the top of the page and shrink in height on scroll.
      • Display links on desktop and optionally collapse into a mobile-friendly "burger" menu for smaller screens.
      • Note: If you choose not to incorporate a burger menu into your mobile view, keep in mind that you still need to adhere to responsiveness standards and ensure that your links do not overflow beyond the width of the header.
  6. Footer:

    • Create a footer at the bottom of your page with copyright information. (e.g. © [Your full name] 2025)
  7. Accessibility:

Meet the A and AA accessibility standards outlined in the provided checklist.

Example Style Folder Structure

src
├── index.html
├── scss
     ├── base 
        ├── _resets.scss
        └── base.scss
     ├── blocks
        ├── _footer.scss
        ├── _header.scss
        ├── _any_block_partial.scss
        └── blocks.scss
     └── utils 
         ├── _mixins.scss
         ├── _variables.scss
         └── utils.scss

Submission Instructions

  1. Submission:
    • Submit the entire project, including:
      • dist: Compiled main.css file.
      • src:
        • img: Any images used in the project.
        • scss/less: All preprocessor files and folders.
        • index.html: HTML file containing your web components.
        • package.json: For reviewers to install dependencies if needed.

Zip the project folder as [first_name_lastname]_homepage and upload it.

About

cd14106 Project Starter Code

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages