Update app.py
Browse files
app.py
CHANGED
|
@@ -13,16 +13,16 @@ 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")
|
| 23 |
with col3:
|
| 24 |
-
iframe_code = f'<iframe src="{urls[2]}" width="
|
| 25 |
st.markdown(iframe_code, unsafe_allow_html=True)
|
| 26 |
with col4:
|
| 27 |
-
iframe_code = f'<iframe src="{urls[3]}" width="
|
| 28 |
st.markdown(iframe_code, unsafe_allow_html=True)
|
|
|
|
| 13 |
col1,col2 = st.columns(2,gap ="small")
|
| 14 |
|
| 15 |
with col1:
|
| 16 |
+
iframe_code = f'<iframe src="{urls[0]}" width="650" height="350" style="border:0;"></iframe>'
|
| 17 |
st.markdown(iframe_code, unsafe_allow_html=True)
|
| 18 |
with col2:
|
| 19 |
+
iframe_code = f'<iframe src="{urls[1]}" width="650" height="350" style="border:0;"></iframe>'
|
| 20 |
st.markdown(iframe_code, unsafe_allow_html=True)
|
| 21 |
|
| 22 |
col3,col4 = st.columns(2,gap ="small")
|
| 23 |
with col3:
|
| 24 |
+
iframe_code = f'<iframe src="{urls[2]}" width="650" height="350" style="border:0;"></iframe>'
|
| 25 |
st.markdown(iframe_code, unsafe_allow_html=True)
|
| 26 |
with col4:
|
| 27 |
+
iframe_code = f'<iframe src="{urls[3]}" width="650" height="350" style="border:0;"></iframe>'
|
| 28 |
st.markdown(iframe_code, unsafe_allow_html=True)
|