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 9a473c9 commit bc7f1b6Copy full SHA for bc7f1b6
css/exercises/index.html
@@ -11,7 +11,7 @@
11
<!-- You do not need to do anything with script.js right now! Later, we will learn how to add JavaScript to websites! --->
12
<h1>My Very Cool Web Page</h1>
13
<h2>Why this Website is Very Cool</h2>
14
- <ol>
+ <ol id="list-color">
15
<li>I made it!</li>
16
<li>This website is colorful!</li>
17
</ol>
css/exercises/styles.css
@@ -1 +1,25 @@
1
/* Start adding your styling below! */
2
+body {
3
+ background-color: yellow;
4
+
5
+}
6
7
+p {
8
+ color: green;
9
10
+h1 {
+ font-size: 36px;
+h1, h2, h3, h4 {
+ text-align: center;
18
19
+#cool-text {
20
+color: blue;
21
22
23
+#list-color {
24
+ color: #00a38b;
25
0 commit comments