-
Notifications
You must be signed in to change notification settings - Fork 9
/
facial-gestures.html
52 lines (49 loc) · 1.41 KB
/
facial-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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Facial 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>
</head>
<body>
<h1>Facial Gestures</h1>
<div class="section">
<p><span class="result">Smile Detection:</span> Detected during 80% of the speech.</p>
<p><span class="result">Eye Contact:</span> Detected for 70% of the speech duration.</p>
<p><span class="result">Other Expressions:</span> Detected moments of concern or frowning for 10% of the speech.</p>
</div>
<a href="index.html">Back to Results Overview</a>
</body>
</html>