File size: 1,045 Bytes
9fb179a 1d9690d 9fb179a ea76dbf d228e32 ea76dbf 9fb179a ea76dbf 836bfb7 9fb179a 836bfb7 9ae8c5b d39d512 9ae8c5b 836bfb7 d39d512 9ae8c5b 836bfb7 d39d512 9ae8c5b 836bfb7 |
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
st.set_page_config(layout="wide")
# Define URLs
urls = [
"https://jeeva780-screener-1min.hf.space",
"https://jeeva780-screener-5min.hf.space",
"https://jeeva780-screener-15min.hf.space",
"https://jeeva780-screener-30min.hf.space"
]
# Create a 4x4 grid of iframes with no gaps
col1,col2 = st.columns(2,gap ="small")
with col1:
iframe_code = f'<iframe src="{urls[0]}" width="650" height="350" style="border:0;"></iframe>'
st.markdown(iframe_code, unsafe_allow_html=True)
with col2:
iframe_code = f'<iframe src="{urls[1]}" width="650" height="350" style="border:0;"></iframe>'
st.markdown(iframe_code, unsafe_allow_html=True)
col3,col4 = st.columns(2,gap ="small")
with col3:
iframe_code = f'<iframe src="{urls[2]}" width="650" height="350" style="border:0;"></iframe>'
st.markdown(iframe_code, unsafe_allow_html=True)
with col4:
iframe_code = f'<iframe src="{urls[3]}" width="650" height="350" style="border:0;"></iframe>'
st.markdown(iframe_code, unsafe_allow_html=True)
|