forked from nikhila-kuchimanchi/oratory_coach_results
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsentiment-tone-analysis.html
136 lines (122 loc) · 3.94 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!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: Verdana, sans-serif;
margin: 0;
text-align: center;
padding: 20px;
background: linear-gradient(135deg, #f1e5f7 0%, #ddc3ee 100%);
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
color: #4A148C;
margin-bottom: 40px;
font-size: 2.8em;
letter-spacing: 1px;
}
.section {
background-color: #fff;
border-radius: 15px;
padding: 30px;
margin-bottom: 20px;
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
width: 90%;
max-width: 600px;
}
.section:hover {
transform: translateY(-10px);
box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
}
.section h2 {
color: #333;
font-size: 1.5em;
margin-bottom: 10px;
}
.result {
font-weight: bold;
color: #444;
}
a {
color: #770b85;
text-decoration: underline;
font-weight: bold;
}
/*a:hover {
color: #470783;
}*/
.back-btn {
display: inline-block;
padding: 10px 20px;
background-color: #770b85;
color: #fff;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
transition: background-color 0.3s ease;
}
.back-btn:hover {
background-color: #470783;
}
</style>
<style>
.navigation {
margin-bottom: 20px;
background-color: #fff;
border-radius: 8px;
padding: 10px 20px;
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
.navigation a {
color: #59047d;
text-decoration: none;
margin: 0 15px; /* Horizontal margin */
font-weight: bold;
padding: 15px 20px; /* Increased vertical padding for more space */
border-radius: 5px;
transition: background-color 0.3s ease, color 0.3s ease;
display: inline-block; /* Ensure the padding applies evenly */
}
.navigation a:hover {
background-color: #59047d;
color: white;
}
footer {
margin-top: 40px;
color: #757575;
font-size: 0.9em;
}
</style>
</head>
<body>
<div class="navigation">
<a href="index.html">Home</a>
<a href="facial-gestures.html">Facial Gestures</a>
<a href="body-gestures.html">Body Gestures</a>
<a href="posture.html">Posture</a>
<a href="sentiment-tone-analysis.html">Sentiment & Tone</a>
<a href="grammar-evaluation.html">Grammar Evaluation</a>
<a href="disfluencies-detection.html">Disfluencies</a>
<a href="suggestions.html">Suggestions</a>
</div>
<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>
<!-- Footer -->
<footer>
© 2024 Oratory Coach. All rights reserved.
</footer>
</body>
</html>