Nymbo commited on
Commit
6a657a3
1 Parent(s): 409a8a4

centering the title

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -114,9 +114,11 @@ def run(server_name: str = "127.0.0.1", server_port: int = 7860):
114
  with gr.Blocks(theme="Nymbo/Nymbo_Theme") as app: # Define the Gradio app layout
115
  gr.Markdown(
116
  """
117
- # Image Format Converter
118
- Upload one or more image files and convert it to specified format with adjustable quality.
119
- ![]('F:/gradio-apps/image_to_webp/caches/1.webp')
 
 
120
  """
121
  )
122
 
 
114
  with gr.Blocks(theme="Nymbo/Nymbo_Theme") as app: # Define the Gradio app layout
115
  gr.Markdown(
116
  """
117
+ <div style="text-align: center;">
118
+ <h1>Image Format Converter</h1>
119
+ <p>Upload one or more image files and convert it to specified format with adjustable quality.</p>
120
+ <img src='F:/gradio-apps/image_to_webp/caches/1.webp' alt='Example Image' />
121
+ </div>
122
  """
123
  )
124