HTML and CSS Reference
In-Depth Information
You code the remaining five pages for the main frame similarly. Modify the page you
just created to build the second of the six main pages. The only differences from the pre-
vious code ( reason1.html ) are shown with a gray background. Save the new page as
reason2.html . The complete code appears as follows:
<!DOCTYPE html>
<html>
<head>
<title> Reason 2 - By the Water Cooler </title>
<style type=”text/css” media=”screen”>
body {
background-color: #ffffff;
font: 200% bold;
text-align: center;
}
</style>
</head>
<body>
<p> I'm flirting by the water cooler. </p>
</body>
</html>
For the third page, modify the code again and save it as reason3.html . The complete
code appears as follows:
<!DOCTYPE html>
<html>
<head>
<title> Reason 3 - Don't Ask! </title>
<style type=”text/css” media=”screen”>
body {
background-color: #ffffff;
font: 200% bold;
text-align: center;
}
</style>
</head>
<body>
<p> None of your business! </p>
</body>
</html>
Here's the fourth page ( reason4.html ):
<!DOCTYPE html>
<html>
<head>
<title> Reason 4 - Out to Lunch </title>
<style type=”text/css” media=”screen”>
Search WWH ::




Custom Search