How can you make text bold and adjust it’s thickness?
font-weight: bold;
font-weight: 200px;
If you wanted various elements to be styled in the same way how do you add this?
h1, h2, p {
font-family: Georgia;
}
In CSS, if you wanted to add something that will select every single element on the web page what would you add?
How do you link the index.html file together with a style.css one?
< link=”style.css” type=”text/css” rel=”stylesheet” >
What element do you need to add in order to be able to write CSS code in an HTML file?
< style > < /style >