srinuksv's picture
Update static/home.html
73038e5 verified
raw
history blame
1.51 kB
<!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>&copy; 2024 College Chatbot</p>
</div>
</body>
</html>