Which type of CSS is coded in the body of the web page as an attribute of an HTML tag?
b. inline
Which of the following is the CSS property used to set the background color of a web page?
b. background-color
Which of the following describe two components of CSS rules? a. selectors and declarations
Which of the following associates a web page with an external style sheet? c. <link rel="stylesheet" href="style.css">
Which of the following configures a background color of #00CED1 for a web page using CSS? a. body { background-color: #00CED1; }
<!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>