import gradio as gr # Replace with your actual Padlet URL padlet_url = "https://padlet.com/mirankim316/digital-literacy-and-english-education-spring-2024-2gmo48o5djxsjpqa" # Create an iframe HTML string to embed the Padlet padlet_embed_html = f""" """ def main(): # Create a Gradio block and add the HTML component with gr.Blocks() as demo: gr.HTML(padlet_embed_html) # Launch the Gradio app demo.launch() if __name__ == "__main__": main()