Hi I am trying to have different color links on the same page. I want some links to be blue and some links to be black. I am new to html and CSS so thank you in advance!
RED RED
As seen above, you simply input style="color: ###" in the a href to set it to whatever you want if you wish to set each individual link. :)
For more general, use
and in your CSS file state
.red { color: red; } .blue { color: blue; }