WEEK 12: Portfolio Projects
(November 6-10)

To Do This Week:

DUE This week: Multimodal Narrative Project – Final Design


Notes:

narrativeprojects-355-01-fall2023
narrativeprojects-355-02-fall2023

Multimodal Narrative Project reminders:

  • have a clear navigation system – buttons or menu
  • make sure the <h1> on each page is the title of the work (not that page title)
  • resize images under 1000px wide
  • <br> – this tag is for line breaks. do not use to add space to the bottom of a div. use margin-bottom or padding-bottom instead
  • add more padding to boxes of text!
  • make sure the word count per paragraph line is 10-15 words
  • ul and ol rules – no other elements except li. 
  • h1-6 – use correctly, follow hierarchy
  • add alt attribute for images!
  • visual hierarchy – difference and repetition, closure
  • validate HTML and CSS!

Portfolio  – 15%

Sites Completed for Peer Critique 
DUE  Dec 6/7 (Wed/Thurs in the last week of classes)

Sites Due for Grading  –
DUE  Dec 12 (Tuesday of exam week at midnight)

Using HTML5 and CSS, hand-code a multiple-page* responsive portfolio website that allows you to present and promote yourself and your work to potential employers and friends.

*If you would like to design a single-page scroll website with anchor links, please see/message me.

Project Statements for Projects
Include a short statement about the Info-card, Blackbird, Recipe and Narrative projects on your portfolio site. Always include a short statement on projects in your portfolio. What was the nature of the assignment? Describe the tools, design ideas, code and/or specific processes. This is for you to properly document your work for your portfolio.

It is important that you finish a majority of  your site’s design and content for the scheduled critique/usability testing. On this day, I will grade this portion of your portfolio.

Portfolio website grading will be based on the following criteria:

Design 30%

  • Website must have a color scheme that is in harmony (use Abobe Kuler!).
  • Typography is legible and text boxes are aligned properly,
  • Navigation is functioning, clear and accessible. 
  • Pages are consistent throughout the site; there is unity in the design.
  • Clear visual hierarchy is used in overall design. Layout, color and imagery evoke information (difference) and context (repetition) effectively.

HTML5 and CSS mark-up  30%

  • The start home/page is index.html
  • Your name is the main heading or  <h1>  for each page of the site. The subheading for “about’ or “gallery” pages would be the <h2>.
  • HTML5 and CSS mark-up is “validated”.  Semantic elements and divs are properly nested with good hierarchical page structure.
  • A single external stylesheet (inline styles and internal stylesheets can be occasionally used to override external css).
  • The site is responsive to device widths, using percentages and media queries
  • HTML and CSS are hand-coded; no WYSIWYG editors or templates. Plugins for galleries are OK. Please see me if you have questions about this.
  • HTML and CSS are well formatted – indentation is used  to indicate nested elements.
  • Navigation must be in the form of a CSS-styled unordered list <ul> and enclosed in <nav>.

Content 30%

  • Content is your own and complete. Images that are not created by you and/or in the Public Domain must be clearly labeled with ownership and copyright information. Text is  grammatically correct, spell-checked and images are compressed for web with proper aspect ratio.
  • You have brief statements for each of the works in this class that is in your Portfolio. Describe the assignment and what HTML/CSS skills you used.
  • The website must have at least 4 pages all together. Suggestions include: About or bio, Statement, Resume or discussion of your skills and abilities, Samples or Galleries of your writing, photography, or artwork, Contact information, Information about your favorite causes, Links to resources or other things you think are worthwhile, etc.

Portfolio website – who, what, why?

Other Examples:

DTC Senior/Graduates Portfolios:


Portfolio Project Notes:

HTML5 Start Template with Reset
Or in Sublime Text save a file as html and the write “html” + tab

HTML5 Start Template with Grid

Process for Designing Portfolio:

  • Research portfolio sites for design ideas (screen grabs, inspect element to find out fonts and colors)
  • Storyboard/Sketch a multipage website (minimum 4 pages or sections for the portfolio project: about, gallery, contact, etc)
  • Gather media and copy (images, screen grabs of projects, text)
  • Build HTML
  • CSS for responsive design and navigation (colored borders on elements)
  • Add Content
  • Final CSS design

RESPONSIVE DESIGN PRINCIPLES:

  • mobile first! – default css is for mobile
  • flexible design (using % instead of px)
  • width: auto; is default and adjusts padding and margins
  • cascade principle -location and inheritance
     (only change styles that need to change)
  • max-width and min-width (set limit with max or min width)
  • height values are tricky! use by pixels or set height on parent
  • responsive images (100% of container parent or img {width: 100%;})
  • breakpoints based on design not device
  • turning off iOS resize:

<meta name="viewport" content="width=device-width, initial-scale=1">

Media Queries Overview

How to Make a Nav Bar

Typography

google fonts

Fontpair

CSS Grid: