import gradio as gr html_code = """ New Year 2025 Celebration
🎉 Happy New Year 2025! 🎉
""" def new_year_celebration(): return html_code # Define Gradio interface interface = gr.Interface(fn=new_year_celebration, inputs=[], outputs="html", title="New Year 2025 Celebration") interface.launch()