CSS

Step 4: Change the text color and font size of the heading by adding the following starting at line 5:
h1 {
  color: white;
  font-size: 50px;
}
Once again, the first line specifies what to style. In this case, the h1 tag, which represents the heading, is styled. The part between the curly brackets specifies how to style the thing that is selected. In this case, both color and font-size styles are used. The px stands for pixels. Feel free to pick a different color and font size.
Last step Next step