memex-in commited on
Commit
c72aefa
·
verified ·
1 Parent(s): 13a60cc

Create index.html

Browse files
Files changed (1) hide show
  1. index.html +53 -0
index.html ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Welcome to Docker!</title>
7
+ <style>
8
+ body {
9
+ font-family: 'Inter', sans-serif;
10
+ display: flex;
11
+ justify-content: center;
12
+ align-items: center;
13
+ min-height: 100vh;
14
+ margin: 0;
15
+ background-color: #f0f2f5;
16
+ color: #333;
17
+ }
18
+ .container {
19
+ background-color: #fff;
20
+ padding: 40px;
21
+ border-radius: 12px;
22
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
23
+ text-align: center;
24
+ max-width: 500px;
25
+ width: 90%;
26
+ }
27
+ h1 {
28
+ color: #2c3e50;
29
+ margin-bottom: 20px;
30
+ }
31
+ p {
32
+ font-size: 1.1em;
33
+ line-height: 1.6;
34
+ color: #555;
35
+ }
36
+ .footer {
37
+ margin-top: 30px;
38
+ font-size: 0.9em;
39
+ color: #888;
40
+ }
41
+ </style>
42
+ </head>
43
+ <body>
44
+ <div class="container">
45
+ <h1>Hello from your Docker Container!</h1>
46
+ <p>This is a simple HTML page served by Nginx on port 80.</p>
47
+ <p>You've successfully deployed your web application using Docker.</p>
48
+ <div class="footer">
49
+ &copy; 2025 Docker Demo
50
+ </div>
51
+ </div>
52
+ </body>
53
+ </html>