Deploy from Lumerel

This commit is contained in:
Lumerel Deploy
2026-02-14 19:27:17 +00:00
commit 35db78c3be
3 changed files with 52 additions and 0 deletions

2
Dockerfile Normal file
View File

@@ -0,0 +1,2 @@
FROM webdevops/php-nginx:8.3-alpine
COPY . /app

18
index.html Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello World - Todd Low Media</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Hello, World!</h1>
<p>Welcome to the Todd Low Media Hello World project.</p>
<div class="fun-fact">
<p>🚀 This page was created on: Saturday, February 14th, 2026</p>
</div>
</div>
</body>
</html>

32
styles.css Normal file
View File

@@ -0,0 +1,32 @@
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
color: #333;
}
.container {
background-color: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 500px;
width: 100%;
}
h1 {
color: #4a4a4a;
margin-bottom: 1rem;
}
.fun-fact {
margin-top: 1rem;
font-size: 0.9rem;
color: #666;
font-style: italic;
}