import streamlit as st import pandas as pd import numpy as np # Custom CSS for styling custom_css = """ """ # Inject the CSS into the app st.markdown(custom_css, unsafe_allow_html=True) # Content st.markdown("
" "A CSV (Comma-Separated Values) file is a simple file format used to store tabular data, such as a spreadsheet or database. Each row in the file corresponds to a record, and each column is separated by a delimiter, typically a comma (,). CSV files are widely used because they are easy to create, parse, and manipulate." "
", unsafe_allow_html=True ) st.markdown("" "CSV files can be read in various programming languages pandas in python, and Microsoft Excel application." "
", unsafe_allow_html=True ) # Adding the Jupyter Notebook link jupyter_link = "http://localhost:8888/notebooks/CSV.ipynb" st.markdown( f"Open Jupyter Notebook", unsafe_allow_html=True )