Files
coolify-examples/static/index.html
2025-03-16 17:00:27 +01:00

21 lines
428 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Laravel Meetup</title>
<meta charset="UTF-8">
<style>
.center-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 48px;
font-family: Arial, sans-serif;
}
</style>
</head>
<body>
<div class="center-text">Huhh, működik!</div>
</body>
</html>