HTML & CSS In Pictures
HTML Basics
Navigation & Layout
Interactivity
Advanced Layout
Change colors
Change page background color
In Notepad, open
format.css
.
On the first line of the style sheet, add formatting for the
<body>
tag:
body {
background: #ffffcc;
}
h1 {
font-family: verdana,helvetica,sans serif;
font-weight: bold;
font-size:16pt;
}
h2 {
font-family: verdana,helvetica,sans serif;
font-weight: bold;
font-size: 14pt;
}
p {
font-family: arial,helvetica,sans serif;
font-size: 10pt;
}
li {
font-family: arial,helvetica,sans serif;
font-weight: bold;
font-size: 10pt;
}
Save
format.css
.
<< BACK
NEXT >>