Spaces:
Sleeping
Sleeping
Create home.html
Browse files- static/home.html +61 -0
static/home.html
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Welcome to the College Chatbot</title>
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
font-family: Arial, sans-serif;
|
10 |
+
background-color: #f4f4f9;
|
11 |
+
margin: 0;
|
12 |
+
padding: 0;
|
13 |
+
text-align: center;
|
14 |
+
}
|
15 |
+
|
16 |
+
h1 {
|
17 |
+
margin-top: 50px;
|
18 |
+
color: #333;
|
19 |
+
}
|
20 |
+
|
21 |
+
.container {
|
22 |
+
margin-top: 30px;
|
23 |
+
}
|
24 |
+
|
25 |
+
.btn {
|
26 |
+
padding: 15px 25px;
|
27 |
+
background-color: #007bff;
|
28 |
+
color: white;
|
29 |
+
font-size: 18px;
|
30 |
+
text-decoration: none;
|
31 |
+
border-radius: 5px;
|
32 |
+
transition: background-color 0.3s ease;
|
33 |
+
}
|
34 |
+
|
35 |
+
.btn:hover {
|
36 |
+
background-color: #0056b3;
|
37 |
+
}
|
38 |
+
|
39 |
+
.footer {
|
40 |
+
position: absolute;
|
41 |
+
bottom: 10px;
|
42 |
+
width: 100%;
|
43 |
+
text-align: center;
|
44 |
+
font-size: 14px;
|
45 |
+
color: #888;
|
46 |
+
}
|
47 |
+
</style>
|
48 |
+
</head>
|
49 |
+
<body>
|
50 |
+
<h1>Welcome to the College Chatbot</h1>
|
51 |
+
|
52 |
+
<div class="container">
|
53 |
+
<p>Click the button below to start a conversation with our College Chatbot.</p>
|
54 |
+
<a href="https://srinuksv-fernai.hf.space/ch/chatbot" target="_blank" class="btn">Go to College Chatbot</a>
|
55 |
+
</div>
|
56 |
+
|
57 |
+
<div class="footer">
|
58 |
+
<p>© 2024 College Chatbot</p>
|
59 |
+
</div>
|
60 |
+
</body>
|
61 |
+
</html>
|