Hi sincejan63,
To use the same CSS file:
1) Define a new class for your link elements and use that to specify a new color in your CSS file.
/* Define a default color for all links */
a {
color: green;
}
/* Define a class and specify a different color */
.lnkChgColor{
color: blue;
}
2) Associate this class name with the link elements you want to change the color for in your HTML code.
<body>
Home
Family
</body>
Therefore the home link is blue and Family link is green.
That’s it in it’s simplest form. Have a play with it and see what you can do….