<html>
<head>
<title>Title of page</title>
<style>
h2 {
color: black;
text-align: center;
font-family: "comic sans ms";
}
body{
background-color:white;
color: black;
}
</style>
</head>
<body>
<h2>Dick Sidbury's Web Site</h2>
<a href="myHomework.html">Homework for Computer Literacy</a>
</body>
</html>
============================================================
<html>
<head>
<title>My Homework</title>
<style>
h2 {
color: White;
text-align: center;
font-family: "comic sans ms";
}
body{
background-color:lightblue;
color: white;
}
</style>
</head>
<body>
<h2>Dick Sidbury's C/IL 102 Homework</h2>
<a href="index.html">Home</a>
</body>
</html>