For example, I have 2 CSS files.
In one CSS file, I have the style:
a{color: blue;}
In the second file, I have:
a{color: red;}
I want to apply these styles to my HTML file.
<div>
<a>first file style </a>
</div>
<div>
<a>second file style </a>
</div>
Can anyone suggest how I can achieve this? Thanks in advance.