import streamlit as st # Set the main title st.title("Makeup Recommendation") # Set the smaller title st.subheader("Choose your preferences") # Create multiple checkboxes for preferences lipstick = st.checkbox("Lipstick") foundation = st.checkbox("Foundation") mascara = st.checkbox("Mascara") eyeshadow = st.checkbox("Eyeshadow") blush = st.checkbox("Blush") concealer = st.checkbox("Concealer") # Logic to display chosen preferences st.write("You have selected:") if lipstick: st.write("Lipstick") if foundation: st.write("Foundation") if mascara: st.write("Mascara") if eyeshadow: st.write("Eyeshadow") if blush: st.write("Blush") if concealer: st.write("Concealer")