-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (43 loc) · 1.92 KB
/
Copy pathindex.html
File metadata and controls
47 lines (43 loc) · 1.92 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>French Learning - AI Conversation Practice</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="header">
<h1>🇫🇷 Learn French Through Conversation</h1>
<p class="subtitle">Practice French anytime, anywhere with our AI French tutor</p>
<div class="features">
<div class="feature-item">
<span class="feature-icon">💬</span>
<span>Real-timelll face-to-face conversation</span>
</div>
<div class="feature-item">
<span class="feature-icon">⏰</span>
<span>Available 24/7 at your convenience</span>
</div>
<div class="feature-item">
<span class="feature-icon">🚀</span>
<span>Fast and efficient learning</span>
</div>
</div>
<p class="description">Our AI French tutor is specifically designed to help you learn French through natural, real conversations. Practice speaking, improve your pronunciation, and build confidence - all at your own pace, whenever you're ready.</p>
</div>
<div class="button-container">
<button id="start-conversation-button" class="start-button">
Start Practicing French
</button>
</div>
<div id="video-container" class="video-container hidden">
<div id="avatar-container"></div>
<button id="end-conversation-button" class="end-button">End Practice Session</button>
</div>
<div id="status-message" class="status-message"></div>
</div>
<script type="module" src="app.js"></script>
</body>
</html>