mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 21:38:58 +00:00
23 lines
466 B
HTML
23 lines
466 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">
|
|
It works. Really? But for real? Real real?
|
|
</div>
|
|
</body>
|
|
</html>
|