Skip to content

Kawata0210/HelloDark

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Hello, Dark!

<!DOCTYPE html>
<html>
---->CODED BY GPT<----
<head>
  <meta charset="utf-8">
  <title>Hello, World!</title>
  <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
  <style>
    body {
      font-family: 'Poppins', sans-serif;
      background-color: white;
      color: black;
      text-align: center;
    }
    @media (prefers-color-scheme: dark) {
      body {
        background-color: black;
        color: white;
      }
    }
  </style>
</head>
<body>
  <h1>Hello, World!</h1>
</body>
</html>