Very new to web design, sorry for the obvious Q, but I am breaking my head here.
I can't understanding why can I not get the text color from my CSS file..
I tried:
<p style = "color:red">bla1</p>
<div class ="colorRed">bla2</div>
bla1 is red, but bla2 isn't.
My .css:
.colorRed
{
color : red;
}
<head>