import streamlit as st
def create_app():
st.title("3D Python Snake Matrix Code ❤️🐍")
html_code = r"""
3D Python Snake Matrix Code ❤️
"""
# Embed the HTML (with the p5.js sketch) into the Streamlit app.
st.components.v1.html(html_code, height=700, scrolling=True)
if __name__ == '__main__':
create_app()