1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>Static White Circle</title>
7 <style>
8 body {
9 background-color: black;
10 display: flex;
11 justify-content: center;
12 align-items: center;
13 height: 100vh;
14 margin: 0;
15 }
16 .circle {
17 width: 100px;
18 height: 100px;
19 border-radius: 50%;
20 background-color: white;
21 }
22 </style>
23</head>
24<body>
25 <div class="circle"></div>
26</body>
27</html>