In this code I linked some icons in to my html page. I want to print them in my html page. How can I do it?. I don't get any sufficient answer on my searches so apologies if this is a duplicate. in this linkthey have shown how to style icons loaded from internet using and tag,instead of internet i want to load from my computer using the same tags,can you help me?
<html>
<head>
<!-- <link rel="stylesheet" href="make.css">
<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">-->
<link rel="icon" type="image/png" href="icona.png" sizes="32x32" />
<link rel="icon" type="image/png" href="iconb.png" sizes="32x32" />
<link rel="icon" type="image/png" href="iconc.png" sizes="32x32" />
<link rel="icon" type="image/png" href="icond.png" sizes="32x32" />
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16" />
</head>
<body>
</body>
</html>
for example here the <i>
tag is used to load an icon.
<a id="fa-flag" href="javascript:;" onClick="$C.setIcon()">
<i class="fa fa-flag"> </i>fa-flag
</a>