jeeva780 commited on
Commit
d39d512
·
verified ·
1 Parent(s): 836bfb7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -5
app.py CHANGED
@@ -12,14 +12,16 @@ urls = [
12
  col1,col2 = st.columns(2,gap ="small")
13
 
14
  with col1:
 
 
 
15
  iframe_code = f'<iframe src="{urls[1]}" width="100%" height="400" style="border:0;"></iframe>'
16
  st.markdown(iframe_code, unsafe_allow_html=True)
17
- with col1:
 
 
18
  iframe_code = f'<iframe src="{urls[2]}" width="100%" height="400" style="border:0;"></iframe>'
19
  st.markdown(iframe_code, unsafe_allow_html=True)
20
- with col1:
21
  iframe_code = f'<iframe src="{urls[3]}" width="100%" height="400" style="border:0;"></iframe>'
22
  st.markdown(iframe_code, unsafe_allow_html=True)
23
- with col1:
24
- iframe_code = f'<iframe src="{urls[4]}" width="100%" height="400" style="border:0;"></iframe>'
25
- st.markdown(iframe_code, unsafe_allow_html=True)
 
12
  col1,col2 = st.columns(2,gap ="small")
13
 
14
  with col1:
15
+ iframe_code = f'<iframe src="{urls[0]}" width="100%" height="400" style="border:0;"></iframe>'
16
+ st.markdown(iframe_code, unsafe_allow_html=True)
17
+ with col2:
18
  iframe_code = f'<iframe src="{urls[1]}" width="100%" height="400" style="border:0;"></iframe>'
19
  st.markdown(iframe_code, unsafe_allow_html=True)
20
+
21
+ col3,col4 = st.columns(2,gap ="small")
22
+ with col3:
23
  iframe_code = f'<iframe src="{urls[2]}" width="100%" height="400" style="border:0;"></iframe>'
24
  st.markdown(iframe_code, unsafe_allow_html=True)
25
+ with col4:
26
  iframe_code = f'<iframe src="{urls[3]}" width="100%" height="400" style="border:0;"></iframe>'
27
  st.markdown(iframe_code, unsafe_allow_html=True)