forked from nikhila-kuchimanchi/oratory_coach_results
-
Notifications
You must be signed in to change notification settings - Fork 8
/
aggregates.html
96 lines (88 loc) · 2.82 KB
/
aggregates.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aggregate Results - Oratory Coach</title>
<link rel="stylesheet" href="styles.css"> <!-- Link to your CSS file if needed -->
<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>
<style>
.navigation {
margin-bottom: 20px;
}
.navigation a {
color: #007BFF;
text-decoration: none;
margin-right: 15px;
font-weight: bold;
}
.navigation a:hover {
text-decoration: underline;
}
</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="sentimental-tone-analysis.html">Sentiment Analysis</a>
<a href="grammar-evaluation.html">Grammar Evaluation</a>
<a href="disfluencies-detection.html">Disfluencies Detection</a>
<a href="suggestions.html">Suggestions for Improvement</a>
</div>
<h1>Aggregate Results</h1>
<div class="section">
<h2>Facial Gestures</h2>
<p><strong>Smile Detection:</strong> Detected during 80% of the speech.</p>
<p><strong>Eye Contact:</strong> Detected for 70% of the speech duration.</p>
<p><strong>Other Expressions:</strong> Detected moments of concern or frowning for 10% of the speech.</p>
</div>
<div class="section">
<h2>Body Gestures</h2>
<p><strong>Hand Movement:</strong> Detected during 60% of the speech.</p>
<p><strong>Posture:</strong> Maintained a confident posture 75% of the time.</p>
</div>
<div class="section">
<h2>Sentiment Analysis</h2>
<p><strong>Positive Sentiment:</strong> 85% positive comments detected.</p>
<p><strong>Negative Sentiment:</strong> 10% negative comments detected.</p>
</div>
<a href="index.html">Back to Results Overview</a>
<!-- Footer -->
<footer>
© 2024 Oratory Coach. All rights reserved.
</footer>
</body>
</html>