import streamlit as st # Dynamic CSS custom_css = """ """ # Inject CSS into Streamlit app st.markdown(custom_css, unsafe_allow_html=True) # Header Section st.markdown("

DIFFERENCES BETWEEN ML AND DL

", unsafe_allow_html=True) # Content for Machine Learning st.markdown( """

Key Points in Machine Learning

""", unsafe_allow_html=True ) # Content for Deep Learning st.markdown( """

Key Points in Deep Leraning

""", unsafe_allow_html=True )