forked from acmpesuecc/oratory_coach_results
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sentiment-tone-analysis.html
51 lines (48 loc) · 1.33 KB
/
sentiment-tone-analysis.html
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
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sentiment and Tone Analysis</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f4f4f4;
}
h1 {
color: #333;
}
.section {
background-color: #fff;
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.section h2 {
color: #5a5a5a;
}
.result {
font-weight: bold;
color: #444;
}
a {
color: #007BFF;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Sentiment and Tone Analysis</h1>
<div class="section">
<p><span class="result">Prevalent Emotions:</span> Positive (65%), Neutral (25%).</p>
<p><span class="result">Tone Analysis:</span> Tone is calm and positive, but lacks emphasis in some areas.</p>
</div>
<a href="index.html">Back to Results Overview</a>
</body>
</html>