Commit 23a2eb82 authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

initial commit

parents
Pipeline #1564 failed with stages
in 1 minute and 24 seconds
FROM nginx
COPY html /usr/share/nginx/html
<!DOCTYPE html>
<html>
<head>
<title>Sample Page</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
}
h1 {
color: #333;
}
p {
color: #666;
}
</style>
</head>
<body>
<h1>Welcome to My Demo Page</h1>
<p>This is a simple HTML file for demonstration purposes.</p>
</body>
</html>
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment