| <!DOCTYPE html>
|
| <html lang="en">
|
| <head>
|
| <meta charset="UTF-8">
|
| <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| <title>Sentiment Analysis Result</title>
|
| <style>
|
| body {
|
| font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| background-color: #f5f5f5;
|
| color: #333;
|
| text-align: center;
|
| margin: 50px;
|
| }
|
|
|
| h1 {
|
| color: #008080;
|
| }
|
|
|
| #result {
|
| font-weight: bold;
|
| margin-top: 20px;
|
| padding: 20px;
|
| border-radius: 10px;
|
| background-color: #ffffff;
|
| box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
| }
|
|
|
| p {
|
| color: #006400;
|
| font-size: 18px;
|
| }
|
| </style>
|
| </head>
|
| <body>
|
| <h1>Sentiment Analysis Result</h1>
|
| <div id="result">
|
| <p>{{ sentiment_result }}</p>
|
| </div>
|
| </body>
|
| </html>
|
|
|