Due: Friday, 9/11/26, before class.
Create a simple, creative website using only plain HTML (no javascript).
You will also experiment with the style attribute to change how your webpage looks (do not use css,
only use the style attributes at this point).
This will feel limiting, but don't worry, we'll "unlock" the rest of the formatting/coding potential soon.
Finally, you will publish your site online using GitHub Pages.
style attribute to at least 3 different elements.<h1 style="color:blue; text-align:center;">Welcome to my page!</h1>
<title> inside <head>).<h1>).This is the part people mess up. GitHub Pages turns your folders into parts of your website's web address. Every assignment gets its own folder inside your repository, so that each assignment has its own unique address and nothing gets overwritten by a later assignment. For this assignment, your files need to live in exactly this location, no more, no less, no different:
csc336-fall2026/ <- the repository you created in the setup instructions
└── assignments/ <- a folder named exactly "assignments"
└── 01-first-webpage/ <- a folder named exactly "01-first-webpage"
└── index.html <- your webpage file, named exactly "index.html"
Step by step:
csc336-fall2026, create a new folder. Name it assignments —
all lowercase, no spaces, spelled exactly like that.assignments folder you just made, create another new folder.
Name it 01-first-webpage — exactly like that, including the dash.01-first-webpage folder, and name that file
index.html — all lowercase, ending in .html (not .htm,
not .txt, not Index.html).
Folder and file names must match exactly — capitalization, spelling, and dashes all
matter. Assignments is not the same as assignments.
Once this is set up correctly, your assignment will be visible at:
https://<your-username>.github.io/csc336-fall2026/assignments/01-first-webpage/
You should not need to submit anything and your website should be publicly available by going to (see Folder Structure above for exactly where your file needs to be for this address to work):
https://<your-username>.github.io/csc336-fall2026/assignments/01-first-webpage/