40 lines
No EOL
813 B
HTML
40 lines
No EOL
813 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Do I eat rocks?</title>
|
|
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
|
|
|
|
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: black;
|
|
|
|
font-family: Impact, "Anton", Haettenschweiler, 'Arial Bold', sans-serif;
|
|
}
|
|
|
|
body {
|
|
align-content: center;
|
|
height: 100lvh;
|
|
}
|
|
|
|
h1 {
|
|
color:white;
|
|
font-size: 100px;
|
|
text-align: center;
|
|
display: block;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<h1>YES</h1>
|
|
</div>
|
|
</body>
|
|
</html> |