<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Black Background Page</title>
<style>
  body {
    background-color: black;
    color: white; /* Set text color to white for better visibility */
    font-family: Arial, sans-serif; /* Optional: set font-family */
    padding: 20px; /* Optional: add some padding for better readability */
  }
</style>
</head>
<body>

<h1>Welcome to the Black Background Page!</h1>
<p>This page has a black background.</p>

</body>
</html>