helloworldpage/index.html
2026-03-17 14:12:10 +05:30

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>