forked from acmpesuecc/oratory_coach_results
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuggestions.html
53 lines (50 loc) · 1.4 KB
/
suggestions.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Suggestions for Improvement</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;
}
ul {
padding-left: 20px;
}
a {
color: #007BFF;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Suggestions for Improvement</h1>
<div class="section">
<ul>
<li>Increase eye contact to engage better with the audience.</li>
<li>Reduce the use of filler words like "um" and "like" to improve speech fluency.</li>
<li>Incorporate more varied tones to emphasize key points and appear more confident.</li>
</ul>
</div>
<a href="index.html">Back to Results Overview</a>
</body>
</html>