AltitudeWeb/frontend/src/index.html
Teriuihi a993c1cc3e Standardize coding style and formatting across the project
Updated codebase to follow consistent styling for spacing, braces, and indentation. Changes improve readability and align with standardized conventions throughout SCSS, TypeScript, and HTML files.
2025-04-05 18:19:10 +02:00

37 lines
1.3 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<title>Altitude Community</title>
<meta charset="utf-8">
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Altitude Community">
<meta name="theme-color" content="#1f9bde">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Twitter Card data -->
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="Community-centered Survival Minecraft Server"/>
<!-- Twitter Summary card images must be at least 120x120px -->
<meta name="twitter:image" content="https://www.alttd.com/assets/img/random/seo.jpg"/>
<!-- Open Graph data -->
<meta property="og:type" content="article"/>
<meta property="og:url" content="https://www.alttd.com/"/>
<meta property="og:image" content="https://www.alttd.com/assets/img/random/seo.jpg"/>
<meta property="og:site_name" content="Altitude Community"/>
<link rel="icon" type="image/x-icon" href="public/favicon.ico">
<style>
header {
height: 460px;
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("public/img/backgrounds/trees.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
</style>
</head>
<body>
<app-root></app-root>
</body>
</html>