import streamlit as st # Static background image URL # Dynamic CSS custom_css = """ """ # Inject CSS into Streamlit app st.markdown(custom_css, unsafe_allow_html=True) # Header Section st.markdown("

Welcome to Data Science

", unsafe_allow_html=True) # Content for Data Science st.markdown( """

What is Data Science?

Data science combines techniques from statistics, computer science, mathematics, and domain expertise to analyze and interpret data effectively. It transforms raw data into actionable insights, driving smarter decisions across industries.

Key Steps in Data Science

Data Science involves several steps, such as:

""", unsafe_allow_html=True ) # Content for Deep Learning st.markdown( """

What is Deep Learning?

Deep learning is an artificial intelligence (AI) method that teaches computers to process data in a way inspired by the human brain. Deep learning models can recognize complex patterns in images, text, sounds, and other data to produce accurate insights and predictions. You can use deep learning methods to automate tasks that typically require human intelligence, such as describing images or transcribing sound files into text.

Key Steps in Deep Learning

""", unsafe_allow_html=True ) # Content for AI st.markdown( """

What is Artificial Intelligence?

Artificial intelligence is a field of science concerned with building computers and machines that can reason, learn, and act in such a way that would normally require human intelligence or that involves data whose scale exceeds what humans can analyze.AI is a broad field that encompasses many different disciplines, including computer science, data analytics and statistics, hardware and software engineering, linguistics, neuroscience, and even philosophy and psychology.On an operational level for business use, AI is a set of technologies that are based primarily on machine learning and deep learning, used for data analytics, predictions and forecasting, object categorization, natural language processing, recommendations, intelligent data retrieval, and more.

Key Steps in Artificial Intelligence

""", unsafe_allow_html=True )