26 lines
571 B
HTML
26 lines
571 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="icon" href="/src/assets/favicon.png">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>ZERO/ONE Starting...</title>
|
|
<style>
|
|
body {
|
|
background: black;
|
|
color: white;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<h1 style="font-family: 'Comic Sans MS', sans-serif">LOADING</h1>
|
|
</div>
|
|
</body>
|
|
</html>
|