18 to-dos, 5 points each, with 4 extra credit to-dos
Essential
Code
30 points
[x] Use of lowercase alphabet for all markup, style, and file and folder names (also class, id, and file and folder names should not have spaces, instead use a hyphen - or an underscore _ in place of a space). For example, <section id="more-recipes"> not <section id="More Recipes">; main.css not Main.CSS
[x] Use of semantic section and grouping elements (header, nav, section, etc.) and semantic text-level elements (strong, em, time, etc.)
Example url: https://jgagne.github.io/html-css-recipe/
Extra Extra
20 points
[x] Use of original artwork (photography, illustration, etc.) and inclusion of credit byline
Credit byline example: <figcaption><small class="photo-credit">Photo by Jane Doe</small></figcaption>
[ ] Test color contrast ratio of your webpage meets WCAG guidelines via Accessible Colors `#useful
[ ] Test document outline for heading and section rank, HTML5 Outliner, and update any Untitled Section to display a proper heading (h1–h6) See also heading and section rank
[ ] Save images for web, using Photoshop’s Export > Save for Web (Legacy)… feature by exporting images at a width of 960px using the JPEG High Preset, and then use ImageOptim to save a few more KB. (Ideal file size per non-retina image should be under 200 KB.)
HTML & CSS Recipe To-Dos
18 to-dos, 5 points each, with 4 extra credit to-dos
Essential
Code
30 points
class
,id
, and file and folder names should not have spaces, instead use a hyphen-
or an underscore_
in place of a space). For example,<section id="more-recipes">
not<section id="More Recipes">
;main.css
notMain.CSS
header
,nav
,section
, etc.) and semantic text-level elements (strong
,em
,time
, etc.)padding
,border
, andmargin
for spacing and rule elementslink
elementrel="canonical"
tocite
original source of recipetitle
and metadescription
<title>
Easy Ramen Recipe!</title>
<meta name="description" content="Get the feeling of authentic handmade ramen at home with ease!">
Design
40 points
#ff0033
becomes#f03
nav
to navigation to page sections (fragments)#ingredients
,#directions
, etc.@media
for wide-to-wider screens, desktop and laptop, layoutfloat
based columns for wide-to-widermax-width: 60em;
layout breakpointTest
20 points
Git
10 points
index.html
css
(folder containing an external style sheet)main.css
orscreen.css
andprint.css
img
(folder containing images)jiffy-cornbread.jpg
versions
(folder [no spaces] containing tests, experiments, work in progress, etc.)recipe-test-1.html
comps
(folder containing images (screen-shots) and/or comps used as style references)style-idea-1.pdf
README.md
; for example https://github.com/mmuench55/quiche-recipeREADME.md
https://jgagne.github.io/html-css-recipe/
Extra Extra
20 points
<figcaption><small class="photo-credit">Photo by Jane Doe</small></figcaption>
h1
–h6
) See also heading and section rankExport > Save for Web (Legacy)…
feature by exporting images at a width of960px
using theJPEG High Preset
, and then use ImageOptim to save a few more KB. (Ideal file size per non-retina image should be under200 KB
.)