attribute selector example
HTML
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<img src="image/reashon.png"
<input type=”text”>
<input type="submit" value="OK">
<br>
<a href="http://webinhindi.com">Learn web design in Hindi</a>
</body>
</html>
CSS
Input[type=”text”] {
Background-color: #bbf8ea
}
[type="submit"]{background-color:yellow;}
[href]{color:red;}