What the page currently looks like and the margin I want to remove
I want to remove the white border around the image. I tried a lot of things nothing seems to be working. Here's what I have so far. HTML:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>repl.it</title>
<link href="home.css" rel="stylesheet" type="text/css" />
</head>
<body style="background-color:white;">
<img src="Banner1.jpg" width=100% height=200px>
<div >
<center> <a href="about.html"> About </a>
<a href="MyFeed.html">My Feed</a></center>
<script src="home.js"></script>
</body>
</html>
And in CSS
.col{ float: left;
background-color: #0f83c775;
height:3px;
width:33%;
position:"fixed";
overflow:auto;}
.body{max-width: 100%;
margin: 0;
padding:0;
}
.img{max-width: 100%;
margin: 0;
padding:0;
margin-left: 0px;
margin-right: 0px;
}