Where do I put styles?
In open tags of individual elements, HTML doc head, separate file
The link element
<link></link>
Selectors
P {
text-align: center;
color: red;
font-size: 10px;
}
Multiple Elements
h1, h2, h3, h4, h5, h6 {
color: #00088;
font-family: helvetica, arial;
}
Descendent Selectors
targets all elements that are descendants of a specified element, regardless of how deeply they are nested
Targeting Elements
<p>
in CSS: p.something-specific {
blah blah;
}
</p>
ID
Similar to class, but more restrictive: each element can only have one ID, each page can only have one element with this ID
Html is for markup: body elements, h1, p, etc
Css is for formatting: bold, italics, font