File tree 1 file changed +19
-4
lines changed 1 file changed +19
-4
lines changed Original file line number Diff line number Diff line change 9
9
< body >
10
10
< script src ="script.js "> </ script >
11
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 >
12
+ < h1 class =" left " > My Very Cool Web Page</ h1 >
13
+ < h2 class =" center " > Why this Website is Very Cool</ h2 >
14
+ < ol id =" list-color " >
15
15
< li > I made it!</ li >
16
16
< li > This website is colorful!</ li >
17
17
</ ol >
18
- < h2 id ="cool-text "> Why I love Web Development</ h2 >
18
+ < h2 class =" center " id ="cool-text "> Why I love Web Development</ h2 >
19
19
< p > Web Development is a very cool skill that I love learning!</ p >
20
20
< p > I love making websites because all I have to do is reload the page to see the changes I have made!</ p >
21
21
</ body >
22
+ < style >
23
+ body {
24
+ background-color : yellow;
25
+ } p {
26
+ color : green;
27
+ } h1 {
28
+ font-size : 36px ;
29
+ } p {
30
+ text-align : center;
31
+ } # cool-text {
32
+ color : blue;
33
+ } # list-color {
34
+ color : blueviolet;
35
+ }
36
+ </ style >
22
37
</ html >
You can’t perform that action at this time.
0 commit comments