File size: 259 Bytes
643df07
 
 
 
6a6e875
 
 
 
643df07
6a6e875
1
2
3
4
5
6
7
8
9
10
import gradio as gr

def greet(name):
    return "Hello " + name + "!!"
  
with gr.Blocks(title="🔊",theme=gr.themes.Base(primary_hue="rose",neutral_hue="zinc")) as app:
    with gr.Row():
        gr.HTML("<img  src='file/a.png' alt='image'>")

app.launch()