How to apply different stylesheets styles to same kind of element each
I have one html page with two stylesheets(StyleSheet1.css and StyleSheet2.css)<!DOCTYPE html>
<html>
<head>
<title></title>
<link href="StyleSheet1.css" rel="stylesheet" />
<link href="StyleSheet2.css" rel="stylesheet" />
</head>
<body>
<a href="#" >First Link</a>
<a href="#" >Second Link</a>
</body>
</html>
Stylesheet1.css
a { color:green; }
Stylesheet2.css
a { color:red; }
How can i apply green color to first link and red color to second link with out using selectors and jquery.