Week 3

Notes 3

Lecture Topics:
The links below are the first 10 chapters of the w3schools.com CSS tutorial.


How to link CSS

Within the <head> section:
<link rel='stylesheet' type='text/css' href='style.css'>


CSS Syntax

selector {property: value; property: value}
h1 {color: red; text-align: center;}


Top

Notifications