Class Wednesday, December 18, 2013

1.  Finish fixing your webpage from Monday

2. We’re going to work on this project together to start learning CSS

3. Some more CSS practice:

<!DOCTYPE html>
<html>
<head>
<title>Title of the webpage</title>
<style type=”text/css”>
body
{
background-color:#d0e4fe;
}
h1
{
color:orange;
text-align:center;
}
p
{
font-family:”Times New Roman”;
font-size:20px;
}
</style>
</head>

<body>

<h1>CSS example!</h1>

<p>This is a paragraph.</p>

</body>

</html>

Save the file as cssexample.html in your folder.

Open the file in Firefox so you can see how it looks.