I am new to web development, I have tried css stylesheet with simple HTML element and it worked well, when i specified element name:
label { color: green
There's lots of ways to accomplish this. There's lots of css selectors like ID, classes... See css selectors reference
Best way to achieve what you want is to use classss. See classes
.red { color: red; } .blue { color: blue; }
I'm blue I'm red