38 lines
1014 B
HTML
38 lines
1014 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>My Nginx Website</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
margin-top: 50px;
|
|
background-color: #f0f0f0;
|
|
}
|
|
h1 {
|
|
color: #333;
|
|
}
|
|
.container {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
background-color: white;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Welcome to My Nginx Website</h1>
|
|
<p>This is a simple website served by Nginx using Docker.</p>
|
|
<p>Time: <span id="time"></span></p>
|
|
<script>
|
|
document.getElementById('time').textContent = new Date().toLocaleTimeString();
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html>
|