With consideration of the code below - select the correct option:
<!DOCTYPE html>
<html>
<head>
<title>Page Title </title>
<style>
body{
color: black;
}
.aSection{
color: green;
}
h1{
color: blue;
}
</style>
</head>
<body>
<section class="aSection">
<h1>Section 1</h1>
</section>
<section class="aSection">
<h1>Section 2</h1>
</section>
<section class="aSection">
<h1>Section 3</h1>
</section>
</body>
</html>
What color is the text?
Which CSS Implementation is page specific?
What standards are we adhering to when we validate our code using the link below?
Helpful Slides and Videos
Reviewing Response and Header Info.