added text-align to <p> for Markdown
Browse files
app.py
CHANGED
@@ -20,7 +20,7 @@ API_KEY = os.getenv('OPEN_AI_API_KEYS')
|
|
20 |
DESCRIPTION = '''
|
21 |
<div>
|
22 |
<h1 style="text-align: center;">Chimera Image Generation</h1>
|
23 |
-
<p>This contains a Stable Diffusor from <a href="https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0"><b>stabilityai/stable-diffusion-xl-base-1.0</b></a></p>
|
24 |
</div>
|
25 |
'''
|
26 |
# DESCRIPTION = '''
|
@@ -306,7 +306,7 @@ with gr.Blocks(fill_height=True) as demo:
|
|
306 |
gr.Markdown('''
|
307 |
<div>
|
308 |
<h1 style="text-align: center;">Chimera Text Generation</h1>
|
309 |
-
<p>This contains a Generative LLM from <a href="https://openai.com/"><b>Open AI</b></a> called GPT-3.5-Turbo</p>
|
310 |
</div>
|
311 |
''')
|
312 |
# text_prompt = gr.Textbox(label="Text Prompt")
|
|
|
20 |
DESCRIPTION = '''
|
21 |
<div>
|
22 |
<h1 style="text-align: center;">Chimera Image Generation</h1>
|
23 |
+
<p style="text-align: center;">This contains a Stable Diffusor from <a href="https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0"><b>stabilityai/stable-diffusion-xl-base-1.0</b></a></p>
|
24 |
</div>
|
25 |
'''
|
26 |
# DESCRIPTION = '''
|
|
|
306 |
gr.Markdown('''
|
307 |
<div>
|
308 |
<h1 style="text-align: center;">Chimera Text Generation</h1>
|
309 |
+
<p style="text-align: center;">This contains a Generative LLM from <a href="https://openai.com/"><b>Open AI</b></a> called GPT-3.5-Turbo</p>
|
310 |
</div>
|
311 |
''')
|
312 |
# text_prompt = gr.Textbox(label="Text Prompt")
|