I am creating an html page and I have all icons in svg format. Can I change the color of the svg image with css? Is it possible?
<style type="text/css">
img.svg { fill: #b9c9d4; }
</style>
<head>
<title></title>
</head>
<body>
<img class="svg" src="logo.svg" alt="" >
</body>
</html>