import streamlit as st # Static background image URL background_url = "https://cdn.pixabay.com/photo/2023/11/23/17/47/sunset-7704533_1280.jpg" # Dynamic CSS custom_css = f""" """ # Inject CSS into Streamlit app st.markdown(custom_css, unsafe_allow_html=True) # Header section st.markdown("

Welcome to Data Science Introduction

", unsafe_allow_html=True) # Main content 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 ) # Header section for Deep Learning st.markdown("

Welcome to Deep Learning

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

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 a sound file into text.

""", unsafe_allow_html=True )