-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchatbot.html
More file actions
58 lines (50 loc) · 1.28 KB
/
chatbot.html
File metadata and controls
58 lines (50 loc) · 1.28 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
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>RVCE Diploma LMS Assistant</title>
<style>
body {
font-family: 'Segoe UI', sans-serif;
background-color: #f4f6f8;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
}
header {
background-color: #0055a5;
color: white;
width: 100%;
padding: 20px;
text-align: center;
font-size: 24px;
font-weight: bold;
}
main {
margin: 40px auto;
max-width: 800px;
text-align: center;
}
footer {
margin-top: auto;
padding: 20px;
color: #666;
font-size: 14px;
}
</style>
</head>
<body>
<header>RVCE Diploma LMS Chat Assistant</header>
<main>
<p>👋 Welcome! I’m here to help you with your syllabus and placement questions.</p>
<p>Click the chatbot in the corner to get started!</p>
</main>
<footer>© 2025 RVCE LMS Team</footer>
<!-- 🔽 Botpress Webchat Scripts -->
<script src="https://cdn.botpress.cloud/webchat/v2.5/inject.js"></script>
<script src="https://files.bpcontent.cloud/2025/05/16/08/20250516081527-2BS41T3S.js"></script>
</body>
</html>