shubham142000 commited on
Commit
260863b
·
verified ·
1 Parent(s): c3890d3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +44 -20
app.py CHANGED
@@ -101,23 +101,47 @@ else:
101
  else:
102
  st.write("Please enter text to classify.")
103
 
104
- # Footer
105
- st.markdown(
106
- """
107
- <style>
108
- .footer {
109
- position: fixed;
110
- bottom: 0;
111
- width: 100%;
112
- text-align: center;
113
- padding: 10px;
114
- background-color: #f1f1f1;
115
- color: black;
116
- }
117
- </style>
118
- <div class="footer">
119
- <b>&copy; Shubham Kale and Prof Ganesh Baglar, IIIT Delhi</b>
120
- </div>
121
- """,
122
- unsafe_allow_html=True
123
- )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  else:
102
  st.write("Please enter text to classify.")
103
 
104
+ # # Footer
105
+ # st.markdown(
106
+ # """
107
+ # <style>
108
+ # .footer {
109
+ # position: fixed;
110
+ # bottom: 0;
111
+ # width: 100%;
112
+ # text-align: center;
113
+ # padding: 10px;
114
+ # background-color: #f1f1f1;
115
+ # color: black;
116
+ # }
117
+ # </style>
118
+ # <div class="footer">
119
+ # <b>&copy; Shubham Kale and Prof Ganesh Baglar, IIIT Delhi</b>
120
+ # </div>
121
+ # """,
122
+ # unsafe_allow_html=True
123
+ # )
124
+ # Add a footer
125
+ st.markdown(
126
+ """
127
+ <style>
128
+ .footer {
129
+ position: fixed;
130
+ left: 0;
131
+ bottom: 0;
132
+ width: 100%;
133
+ background-color: #f1f1f1;
134
+ color: black;
135
+ text-align: center;
136
+ padding: 10px;
137
+ }
138
+ .footer p {
139
+ font-size: 1.2em;
140
+ font-weight: bold;
141
+ }
142
+ </style>
143
+ <div class="footer">
144
+ <p>© Shubham Kale and Prof Ganesh Baglar, IIIT Delhi</p>
145
+ </div>
146
+ """, unsafe_allow_html=True
147
+ )