Spaces:
Sleeping
Sleeping
File size: 917 Bytes
de73856 b070d6e 801dbe0 bd527cb 801dbe0 bd527cb 801dbe0 bd527cb 801dbe0 bd527cb 801dbe0 bd527cb b070d6e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
import streamlit as st
# HTML content inside a string for correct syntax
html_content = """
# Shapes in Markdown
## Rectangle
<div style="width: 200px; height: 100px; background-color: lightblue;"></div>
## Circle
<div style="width: 100px; height: 100px; border-radius: 50%; background-color: lightcoral;"></div>
## Ellipse
<div style="width: 200px; height: 100px; border-radius: 50%; background-color: lightgreen;"></div>
## SVG Shapes
<svg width="300" height="200">
<!-- Rectangle -->
<rect x="10" y="10" width="100" height="50" style="fill:lightblue;stroke:black;stroke-width:2" />
<!-- Circle -->
<circle cx="200" cy="50" r="40" style="fill:lightcoral;stroke:black;stroke-width:2" />
<!-- Ellipse -->
<ellipse cx="200" cy="150" rx="85" ry="55" style="fill:lightgreen;stroke:black;stroke-width:2" />
</svg>
"""
# Render HTML content in Streamlit
st.markdown(html_content, unsafe_allow_html=True)
|