30 lines
702 B
HTML
30 lines
702 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Hello World</title>
|
|
<style>
|
|
:root {
|
|
color-scheme: light dark;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
display: grid;
|
|
place-items: center;
|
|
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
|
|
Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
|
|
}
|
|
h1 {
|
|
font-size: clamp(2rem, 6vw, 4rem);
|
|
letter-spacing: -0.03em;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Hello World</h1>
|
|
</body>
|
|
</html>
|