forked from nikhila-kuchimanchi/oratory_coach_results
-
Notifications
You must be signed in to change notification settings - Fork 8
/
body-gestures.html
82 lines (77 loc) · 2.39 KB
/
body-gestures.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Body Gestures</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>
<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="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>Body Gestures</h1>
<div class="section">
<p><span class="result">Hand Movements:</span> Active during 60% of the speech, suggesting moderate engagement.</p>
<p><span class="result">Head Movements:</span> Head nodding detected occasionally (40%) indicating attentiveness.</p>
<p><span class="result">Engagement Level:</span> Overall body gestures suggest a confidence level of 75%.</p>
</div>
<a href="index.html">Back to Results Overview</a>
<!-- Footer -->
<footer>
© 2024 Oratory Coach. All rights reserved.
</footer>
</body>
</html>