I need these images to fill the entire screen. Currently there is a white space around the entire page as well as between the images.
<!DOCTYPE html>
<html>
<head>
<title>TITLE</title>
</head>
<style>
html, body {
max-width: 100%;
}
</style>
<body>
<style>
.staticsite
left: 0%;
font-size: 0;
line-height: 0;
}
div {
width: 100%;
}
</style>
<div style="staticsite">
<a href="URL" style="text-decoration: none">
<img class="staticsite" img draggable="false" src="IMGURL" width="100%" alt=""> </a>
<img class="staticsite" img draggable="false" src="IMGURL" width="100%" alt="">
</div>
</body>
</html>
I've tried putting them in a DIV that fills the screen, I'm not too sure why this isn't working. I've just put all of the code above as this is the entire page.