Spaces:
Sleeping
Sleeping
File size: 549 Bytes
acc1e88 f1cae36 acc1e88 f1cae36 8fe0824 f1cae36 acc1e88 f1cae36 acc1e88 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import gradio as gr
with gr.Blocks() as demo:
gr.Markdown("### Open Google Colab from Hugging Face Space")
gr.HTML(
'''
<iframe
src="https://www.google.com/"
width="100%"
height="800px"
style="border:none;"
></iframe>
'''
)
gr.Markdown(
"If the Colab interface does not load, click the button below to open Colab in a new tab."
)
gr.HTML('<a href="https://colab.research.google.com/" target="_blank">Open Colab</a>')
demo.launch()
|