mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 13:28:57 +00:00
22 lines
621 B
HTML
22 lines
621 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>
|
|
<img src="https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExMmUxZmxnaGp6cjdjcGl2cnN3cjNiYzc5M2k3b2ZnanJ0c3JmNnN5aSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/YaD38YhJo6QSxEeEIe/giphy.gif" />
|
|
</body>
|
|
</html>
|