Navigation:
Challenge 2
Open the web editor (click the “Try it yourself!” button below)
Add an id attribute to one of the header tag. For example,
<header id="page-title">
Toggle to the CSS tab
#page-title
{
styling here...
}
Change the title color by adding color: yellow; inside the curly braces
Change the font by adding font-family: ‘Roboto Mono’, monospace; inside the curly braces and adding @import url(‘https://fonts.googleapis.com/css?family=Roboto+Mono'); at the top of the CSS tab
Try it yourself!