Is it possible to apply a different font for alt or title tag using css or javascript?
Eg:
body {
font-family: "sans-serif";
}
img[alt] {
font-family: "Arial";
}
img[title] {
font-family: "Arial";
}
<img src="images/sample.png" alt="sample" title="sample">
I tried the above options but doesn't seems the font applied.