I created a header with <div></div> in html, but when I tested it there is a white outline around header. I created header in <head></head>.
Image of header: header
HTML code of my site:
    .header {
      padding: 20px;
      text-align: left;
      background-color: skyblue;
      color: white;
      font-size: 20px;
      font-family: Arial, Helvetica, sans-serif;
    }
<!DOCTYPE html>
<html>
<title>
  NetPlat
</title>
<head>
  <div class="header">
    <a href="login.php">
      <button style="float: right;">Logout</button>
    </a>
    <h1>Home Page</h1>
  </div>
  <style>
  </style>
</head>
<body>
</body>
</html>