Question1
Execututable code
<!DOCTYPE html>
<html lang="en">
<head>
<title>Trillium Media Design</title>
<meta charset="utf-8">
<style>
body { background-color: #0066CC;
color: "#ffffff"; } <----- added color
header {
font-family: Arial, Helvetica, sans-serif;
}
</style> < ----- /style and /header were missing
</head> < ----- /style and /header were missing
<body>
<header>
<h1>
Trillium Media Design
</h1>
</header>
<p>Our professional staff takes pride in its working
relationship with our clients by offering personalized
services that listen to their needs, develop their target
areas, and incorporate these items into a website that works.
</p>
</body>
</html>
Question 2
Execututable code
<!DOCTYPE html>
<html lang="en">
<head>
<title>
Trillium Media Design
</title>
<meta charset="utf-8">
<style>
body { background-color: #000066;
color: #CCCCCC;
font-family: Arial,sans-serif;
font-size: 1.2em; }
</style> #<----------added / to the style
</head>
<body>
<header>
<h1>
Trillium Media Design
</h1>
</header>
<main><p>
Our professional staff takes pride in its working relationship with our clients by offering personalized
services that listen to their needs, develop their target areas, and incorporate these items into a website that works.
</p></main>
</body>
</html>