Styling certain elements
We can give a certain tag an id
in order to differentiate it from other tags of the same type like this: id="para1"
Then in our CSS code we can refer to this specific tag using the following selector:
#para1 {
text-align: center;
color: red;
}