|
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8"> |
5 | | - <title>Welcome</title> |
6 | | - </head> |
| 5 | + <title>JUv25 Web Server</title> |
| 6 | + <style> |
| 7 | + body { |
| 8 | + margin: 0; |
| 9 | + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |
| 10 | + background: linear-gradient(135deg, #1e3c72, #2a5298, #6fb1fc); |
| 11 | + color: white; |
| 12 | + display: flex; |
| 13 | + justify-content: center; |
| 14 | + align-items: center; |
| 15 | + height: 100vh; |
| 16 | + text-align: center; |
| 17 | + } |
| 18 | + |
| 19 | + .card { |
| 20 | + background: rgba(255, 255, 255, 0.1); |
| 21 | + padding: 40px; |
| 22 | + border-radius: 12px; |
| 23 | + backdrop-filter: blur(10px); |
| 24 | + box-shadow: 0 10px 30px rgba(0,0,0,0.3); |
| 25 | + max-width: 500px; |
| 26 | + |
| 27 | + |
| 28 | + margin-top: 50px; |
| 29 | + } |
| 30 | + |
| 31 | + |
| 32 | + .card:hover { |
| 33 | + transform: translateY(-5px); |
| 34 | + box-shadow: 0 20px 50px rgba(0,0,0,0.5); |
| 35 | + } |
| 36 | + |
| 37 | + h1 { |
| 38 | + margin-bottom: 15px; |
| 39 | + font-size: 2.2em; |
| 40 | + } |
| 41 | + |
| 42 | + p { |
| 43 | + opacity: 0.9; |
| 44 | + font-size: 1.1em; |
| 45 | + } |
| 46 | + |
| 47 | + .btn { |
| 48 | + background: linear-gradient(90deg, #2a5298, #1e3c72); |
| 49 | + margin-top: 40px; |
| 50 | + color: white; |
| 51 | + padding: 12px 25px; |
| 52 | + border-radius: 8px; |
| 53 | + font-weight: bold; |
| 54 | + text-decoration: none; |
| 55 | + transition: 0.3s; |
| 56 | + } |
| 57 | + |
| 58 | + .btn:hover { |
| 59 | + transform: scale(1.05); |
| 60 | + box-shadow: 0 5px 15px rgba(0,0,0,0.3); |
| 61 | + } |
| 62 | + |
| 63 | + |
| 64 | + @media (max-width: 500px) { |
| 65 | + h1 { font-size: 1.6em; } |
| 66 | + p { font-size: 1em; } |
| 67 | + .card { padding: 35px 20px; } |
| 68 | + } |
| 69 | + </style> |
| 70 | +</head> |
7 | 71 | <body> |
8 | | -<h1>Website works!</h1> |
9 | | -<p>Greetings from StaticFileHandler.</p> |
| 72 | +<div class="card"> |
| 73 | + <h1>JUv25 Web Server </h1> |
| 74 | + <p>Website works! Greetings from StaticFileHandler.</p> |
| 75 | + <a href="/health.html" class="btn">Check Server Health </a> |
| 76 | + |
| 77 | +</div> |
10 | 78 | </body> |
11 | 79 | </html> |
12 | | - |
|
0 commit comments