Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -99,3 +99,27 @@ def main():
|
|
| 99 |
|
| 100 |
if __name__ == "__main__":
|
| 101 |
main()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 99 |
|
| 100 |
if __name__ == "__main__":
|
| 101 |
main()
|
| 102 |
+
# Add a footer
|
| 103 |
+
st.markdown(
|
| 104 |
+
"""
|
| 105 |
+
<style>
|
| 106 |
+
.footer {
|
| 107 |
+
position: fixed;
|
| 108 |
+
left: 0;
|
| 109 |
+
bottom: 0;
|
| 110 |
+
width: 100%;
|
| 111 |
+
background-color: #f1f1f1;
|
| 112 |
+
color: black;
|
| 113 |
+
text-align: center;
|
| 114 |
+
padding: 10px;
|
| 115 |
+
}
|
| 116 |
+
.footer p {
|
| 117 |
+
font-size: 1.2em;
|
| 118 |
+
font-weight: bold;
|
| 119 |
+
}
|
| 120 |
+
</style>
|
| 121 |
+
<div class="footer">
|
| 122 |
+
<p>© Shubham Kale and Prof.N.Arul.Murugan, IIIT Delhi</p>
|
| 123 |
+
</div>
|
| 124 |
+
""", unsafe_allow_html=True
|
| 125 |
+
)
|