Is it possible to eliminate the red lines between "google links" while keeping the border color as red? How can I achieve this? Here is the code snippet provided:
<!doctype html>
<html>
<head>
<title>Website</title>
</head>
<body>
<style>
a{
text-decoration:none;
color:white;
font-weight:bold;
font-family:tahoma;
background:black;
padding-top:2px;
padding-right:0px;
padding-bottom:3px;
padding-left:0px;
border:1px solid red;
margin-left:0px;}
</style>
<a href="https://www.google.co.in">google</a><a href="https://www.google.co.in">google</a><a href="https://www.google.co.in">google</a><a href="https://www.google.co.in">google</a><a href="https://www.google.co.in">google</a>
</body>
</html>