[CSS] Day 2: Understanding Property:Value and apply
Let's change my webpage title font size and want to move to center of the page.
The first approach is to understand what is my header
h1 is my header
Then I can maybe use h1 as my selector and add property: value
h1 {
}
The second approach is to search CSS text size property
looks like I could use font-size: 45px
I also want my title to be located at the center of my webpage
search CSS text center property
text-align: center;