Spaces:
Runtime error
Runtime error
| from datetime import date | |
| import streamlit as st | |
| def APP_PAGE_HEADER(): | |
| st.set_page_config( | |
| page_title="ML Algorithms", | |
| page_icon=":camel:", | |
| layout="wide", | |
| initial_sidebar_state="collapsed", | |
| ) | |
| hide_style = """ | |
| <style> | |
| #MainMenu {visibility: hidden;} | |
| footer {visibility: hidden;} | |
| </style> | |
| """ | |
| st.markdown(hide_style, unsafe_allow_html=True) | |
| HEADER() | |
| def HEADER(): | |
| today = date.today() | |
| st.header("_Simple ML Algorithms explained in Math & Code_") | |
| st.write(str(today)) | |