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!
You can give the links different classes like:
Link to some internal page
Link to some external page
And write CSS rules like:
a.internal {
color: ...;
}
a.external {
color: ...;
}
a.internal means select all a-elements with class internal.
Learn more about CSS.