-
Notifications
You must be signed in to change notification settings - Fork 1
/
chuoi.html
68 lines (45 loc) · 2.18 KB
/
chuoi.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
<!DOCTYPE html>
<head>
<title>The N2 Chatbot</title>
<body>
<style>
body{
padding: 0;
margin: 0;
background-image: url("images/bg.jpg");
background-color: #cccccc;
}
</style>
<p style="font-size:50px">Date/Time: <span id="datetime"></span></p>
<script>
var dt = new Date();
document.getElementById("datetime").innerHTML = dt.toLocaleString();
</script>
<b style="font-size: 30px; margin-top: auto;">The video lesson:</b>
<div style="overflow: hidden; margin-top: -100px; margin-left: -25px;"></div>
</div>
<br>
<video width="640" height="357px" style="float: left; margin-top: 90px; padding-right: 100px;" controls>
<source src="videos/video.avi" type="video/mp4">
Your browser does not support the video tag.
</video>
<iframe allow="microphone;" src="https://console.dialogflow.com/api-client/demo/embedded/schoolaichatbot" scrolling="no" style="height: 520px; border: 1px none; width: 640px; margin-top: -75px; margin-left: -5px; border-style: solid;" >
</iframe>
<br></br>
<b style="font-size: 30px;">Listen and say: Chatbot conversation:</b>
<br>
<br>
<br>
<audio controls>
<source src="track\final.mp3" type="audio/mp3">
Your browser does not support the audio tag.
</audio>
<script src="gettime.js"></script>
<br>
<br>
<b style="font-size: 30px;">Classbook lecture:</b>
<br>
<br>
<button onclick="window.location.href='images/lesson1.PNG'" target="_blank" src="images/lesson1.PNG" style="height: 50px; font-size: large; width: 290px; left:20px; border-radius:50px ;">Classbook lesson 1 (PNG)</button>
</body>
</head>