We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef88c77 commit ba809afCopy full SHA for ba809af
starter/03-CSS-Fundamentals/index.html
@@ -147,7 +147,9 @@ <h4>Related posts</h4>
147
</aside>
148
149
<footer>
150
- <p id="copyright">Copyright © 2027 by The Code Magazine.</p>
+ <p id="copyright" class="copyright text">
151
+ Copyright © 2027 by The Code Magazine.
152
+ </p>
153
</footer>
154
</body>
155
</html>
starter/03-CSS-Fundamentals/style.css
@@ -129,3 +129,19 @@ a:active {
129
background-color: black;
130
font-style: italic;
131
}
132
+
133
+#copyright {
134
+ color: red;
135
+}
136
137
+.copyright {
138
+ color: blue;
139
140
141
+.text {
142
+ color: yellow;
143
144
145
+footer p {
146
+ color: green;
0 commit comments