File size: 524 Bytes
11a0fc5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
    <title>Live Dashboard</title>
    <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
    <style>
        body { font-family: Arial; padding: 20px; }
        .chat-card { border: 1px solid #ccc; margin-bottom: 8px; padding: 8px; border-radius: 5px; }
    </style>
</head>
<body>

<h2>Live Chat Dashboard</h2>

<h3>Sentiment Trend</h3>
<canvas id="sentimentChart" width="400" height="200"></canvas>

<div id="chat-container"></div>

<script src="main.js"></script>

</body>
</html>