In this first assignment you'll write your own Web Manifesto — a short personal statement about who you are, why you're here, and what you believe about the web. The content is yours. The goal is to practice writing valid HTML and setting up a proper project folder structure.
Every project in this course lives in its own folder inside the matching week folder. Each project folder
contains an index.html,
a style.css,
and an images/
subfolder for any images you use.
For this assignment, your structure should look like this:
samples/
└── week_01/
└── manifesto/
├── index.html ← your work goes here
├── style.css ← not used yet, but keep it
└── images/ ← empty for now
week_01,
manifesto).
Computers hate spaces in filenames.We use this structure for every project all semester. Getting into the habit now will save you a lot of headaches later.
Write a webpage that is your personal statement as a web developer. What brought you here? What do you believe about the web? What do you want to build?
week_01.
manifesto.
manifesto,
create index.html,
style.css,
and an images
folder.Your index.html
must include:
<!DOCTYPE html>,
<html>,
<head>,
<body>)
<title>
in the <head>
<h1>
with your name or title<h2>
section headings<p>
paragraphs of real written content<ul>)
or ordered list (<ol>)
<strong>
or <em>
Not sure what to write? Try answering some of these questions:
You don't have to answer all of them — pick what feels meaningful to you.
index.html
to open it in Chrome. Does it look right? (Plain text — no styling yet — is expected!)A finished example is linked in the course files. Use it as a reference for structure and valid HTML, but write your own content. Your manifesto should be your voice, not a copy.
Want to go further with HTML?
| Criteria | Distinguished | Proficient | Emerging |
|---|---|---|---|
| HTML Structure (5 pts) LO1: HTML |
5
pts Valid HTML5 boilerplate, correct DOCTYPE,
title,
and nested structure. |
3–4 pts Structure is mostly correct but missing one required element. |
0–2 pts Boilerplate is missing or severely malformed. |
| Content &
Tags (5 pts) LO1: Semantics |
5
pts All required tags present ( h1,
h2,
p,
list, strong/em).
Content is genuine and complete. |
3–4 pts Most tags present but one or two requirements are missing. |
0–2 pts Content is largely missing or placeholder text remains. |
| File & Folder
Structure (5 pts) LO: Files |
5
pts File is named index.html,
inside a manifesto/
folder with style.css
and images/
present. |
3–4 pts File is correct but folder structure is incomplete or naming is off. |
0–2 pts File is missing, misnamed, or not in a folder. |
| Total Score: | 15 pts | ||