import streamlit as st # Inject custom CSS for background and animations st.markdown( f""" """, unsafe_allow_html=True ) # Streamlit UI elements st.title("Word Cloud Application", anchor=None) st.markdown( '
Welcome to the Word Cloud Application
', unsafe_allow_html=True, ) st.markdown( '
This app provides a beautiful interface to display word clouds.
', unsafe_allow_html=True, ) # Add some interactivity if st.button("Click Me"): st.write("You clicked the button!") # Add a select box option = st.selectbox( "Choose an option:", ["Option 1", "Option 2", "Option 3"] ) st.write(f"You selected: {option}")