Display Website

How do I display a website in the same web page?

I am currently using webbrowser library to open the website in a new tab. I am interested in knowing how do I view my website in the same streamlit page.

Thanks.

2 Likes
st.write(
        f'<iframe src="http://localhost:8501/"></iframe>',
        unsafe_allow_html=True,
    )
3 Likes