Media and Web Development
ICOM-101-01 / MTEC-617-01
Week 5 ● Leaving Glitch!

Once we are out of Glitch, we need a text editing program to write our code.This program doesn't have to be anything fancy, anything that can write a html file will do, but things are much easier with a programming specific editor.
We can link a stylesheet ( css file ) with a html document with the link tag. The link tag goes in the head of the html document
The link tag has 2 required attributes. href which specifies the path of the file to load, and rel which specifies the relationship between the loading document and the loaded document. In our case rel will always equal "stylesheet"
We can load local images exactly like we loaded images in glitch. Only now, the src attribute of our img tag can point to files stored relative to the html file.
Migrate one of the last two assignments ( something with both HTML and CSS ) out of
glitch.
● Create an index.html file and a style.css file
● Link your style.css file to the index.html with a style tag inside the head element of your html
● Submit your work as a .zip file containing both your html and css files