← Week 7
DESN 368

Week 7 — Research & Make CSS Normalize and CSS Reset

Web Design Fundamentals · Spring 2026

Active

Step 1: Historical Foundation

Read Eric Meyer's "Reset Reasoning" (2007)

Step 2: Modern Evolution

Read Josh Comeau's "A Modern CSS Reset"

Step 3: Wider Landscape

Look at Jeff Starr's "Killer Collection of CSS Resets" at Perishable Press

Step 4: Critical Questions (Your Notes Should Address)

Step 5: Deliverable

Build a mini-site (one page) that demonstrates your research:

Submission Requirements

File Structure

Create your mini-site as a self-contained folder inside week-7/ so its styles and assets stay scoped to this project:

your-site/
├── index.html (main navigation page)
├── week-1/
├── week-2/
...
├── week-7/
│   ├── css-reset-research/  (your mini-site folder)
│   │   ├── reset.html
│   │   ├── styles/
│   │   │   └── styles.css
│   │   └── assets/
│   │       └── (images, fonts, etc.)
│   └── (other week-7 projects)

Link from Main Index

Add a navigation link in your index.html:

<nav>
  <a href="week-7/css-reset-research/reset.html">CSS Reset Research</a>
  <!-- your other links -->
</nav>

Submit the URL

Submit the link to your main index.html page, not the mini-site directly.

Example submission: https://yourusername.github.io/desn368/

I will click through to find your research page.