Spaces:
Running
Running
File size: 1,512 Bytes
1f72b74 9c2022b 1f72b74 9c2022b 1f72b74 73038e5 1f72b74 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to the LBRCE College Chatbot</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
margin: 0;
padding: 0;
text-align: center;
}
h1 {
margin-top: 50px;
color: #333;
}
.container {
margin-top: 30px;
}
.btn {
padding: 15px 25px;
background-color: #007bff;
color: white;
font-size: 18px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #0056b3;
}
.footer {
position: absolute;
bottom: 10px;
width: 100%;
text-align: center;
font-size: 14px;
color: #888;
}
</style>
</head>
<body>
<h1>Welcome to the LBRCE College Chatbot</h1>
<div class="container">
<p>Click the button below to start a conversation with our College Chatbot.</p>
<a href="https://srinuksv-lbrce-college-chatbot.hf.space/ch/chatbot" target="_blank" class="btn">Go to College Chatbot</a>
</div>
<div class="footer">
<p>© 2024 College Chatbot</p>
</div>
</body>
</html>
|