Update app.py
Browse files
app.py
CHANGED
|
@@ -13,10 +13,10 @@ urls = [
|
|
| 13 |
col1,col2 = st.columns(2,gap ="small")
|
| 14 |
|
| 15 |
with col1:
|
| 16 |
-
iframe_code = f'<iframe src="{urls[0]}" width="
|
| 17 |
st.markdown(iframe_code, unsafe_allow_html=True)
|
| 18 |
with col2:
|
| 19 |
-
iframe_code = f'<iframe src="{urls[1]}" width="
|
| 20 |
st.markdown(iframe_code, unsafe_allow_html=True)
|
| 21 |
|
| 22 |
col3,col4 = st.columns(2,gap ="small")
|
|
|
|
| 13 |
col1,col2 = st.columns(2,gap ="small")
|
| 14 |
|
| 15 |
with col1:
|
| 16 |
+
iframe_code = f'<iframe src="{urls[0]}" width="850" height="450" frameborder="0"></iframe>'
|
| 17 |
st.markdown(iframe_code, unsafe_allow_html=True)
|
| 18 |
with col2:
|
| 19 |
+
iframe_code = f'<iframe src="{urls[1]}" width="850" height="450" style="border:0;"></iframe>'
|
| 20 |
st.markdown(iframe_code, unsafe_allow_html=True)
|
| 21 |
|
| 22 |
col3,col4 = st.columns(2,gap ="small")
|