34 lines
784 B
HTML
34 lines
784 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>
|
|
body {
|
|
font-family: system-ui, sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
background: #f0f4f8;
|
|
}
|
|
.card {
|
|
background: white;
|
|
border-radius: 12px;
|
|
padding: 2rem 3rem;
|
|
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
|
|
text-align: center;
|
|
}
|
|
h1 { color: #2d3748; margin: 0 0 0.5rem; }
|
|
p { color: #718096; margin: 0; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<h1>Hello, Worlds!</h1>
|
|
<p>Test application for Hostityourself</p>
|
|
</div>
|
|
</body>
|
|
</html>
|