| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Weather Prediction Result</title> |
| <style> |
| body { |
| font-family: Arial, sans-serif; |
| background-color: #f0f9ff; |
| margin: 0; |
| padding: 0; |
| display: flex; |
| justify-content: center; |
| align-items: center; |
| height: 100vh; |
| } |
| |
| .container { |
| background-color: #fff; |
| padding: 20px; |
| border-radius: 10px; |
| box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); |
| max-width: 400px; |
| text-align: center; |
| } |
| |
| h2 { |
| color: #333; |
| margin-bottom: 20px; |
| } |
| |
| p { |
| font-size: 18px; |
| color: #555; |
| margin-bottom: 20px; |
| } |
| |
| .prediction { |
| font-size: 24px; |
| font-weight: bold; |
| color: #4caf50; |
| transition: transform 0.3s, color 0.3s; |
| cursor: pointer; |
| } |
| |
| .prediction:hover { |
| color: #008cba; |
| transform: scale(1.1); |
| } |
| </style> |
| </head> |
| <body> |
| <div class="container"> |
| <h2>Weather Prediction Result</h2> |
| <p>The predicted weather class is: <span class="prediction" id="prediction">Sunny</span></p> |
| </div> |
| </body> |
| </html> |
|
|