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
Use id of the element if you want to target a specific element. Example:
#labelId{ color: green; } Some Text
Alternatively, you can also provide specific class name to the element. Example:
.label-class{ color: green; } Some Text