48 lines
1.3 KiB
HTML
48 lines
1.3 KiB
HTML
test
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Metadata -->
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="Hello World">
|
|
<meta name="author" content="AI">
|
|
|
|
<!-- SEO & Social -->
|
|
<meta property="og:title" content="Hello World Page">
|
|
<meta property="og:description" content="An page that prints Hello World">
|
|
<meta property="og:type" content="website">
|
|
<meta name="twitter:card" content="summary">
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" href="https://www.de-roo.org/favicon.ico" type="image/x-icon">
|
|
|
|
<!-- Google Fonts -->
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
|
|
|
|
<title>Hello World</title>
|
|
|
|
<!-- Custom Styles -->
|
|
<style>
|
|
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
|
|
margin: 0;
|
|
}
|
|
h1 {
|
|
font-size: 4rem;
|
|
color: #333;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Hello World</h1>
|
|
|
|
</body>
|
|
</html> |