<!DOCTYPE html>
<html>
<head>
<title>CSS [attr=value] Selector</title>
<style type="text/css">
a[href="#"][class="demo"] {
color:#ff0000;
}
</style>
</head>
<body>
<a href="http://www.google.com" class="demo">Google</a>
<a href="#">Way2Tutorial</a>
<a href="#" class="demo">HTML</a>
</body>
</html>