I am using the same image multiple times in an HTML table using CSS. Here is simplified code below with truncated 64 bit data to save space:
<html>
<head>
<style>
.my_image {
width:125px;
height:75px;
background-image:url(data:image/png;base64,iVBORw0...);
}
.table {
width: 100%;
}
.h_global {
font-family: "Garamond";
font-weight: 900;
font-style: normal;
font-variant: normal;
text-align: center;
background-color: Black;
color: white;
}
.h1 {
font-size: 48px;
line-height: 10px;
padding: 0px;
}
</style>
</head>
<body>
<table class="table">
<tr>
<td class="my_image">
</td>
<td class="h_global h1">
Some Text
</td>
<td class="my_image">
</td>
</tr>
</table>
</body>
How can I title and hyperlink the image? I don't need a different URL for each instance, can I add it to the CSS class somehow?