File size: 990 Bytes
a060517
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!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>