When adding href to a image I see a blue line created underneath the image. Any idea what its called and how to remove that?
Here is a screenshot of the image.
Here is the html code:
<html>
<style>
div{
position: absolute;
top: 50%;
left: 50%;
width: 400px;
height: 300px;
margin-top: -150px;
margin-left: -200px;
}
</style>
<div>
<a href="https://10.10.10.10/zabbix">
<img src="https://miro.medium.com/max/800/1*clU7swMwpx_-jFxwExcCOg.png" width="190">
</a>
<a href="https://10.10.10.10/grafana">
<img src="https://logodix.com/logo/1736625.png" width="190" >
</a>
</div>
</html>