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 links colab_link = "https://colab.research.google.com/drive/1Q8YudbojYI_m1ObYII4UYh9MGLyS42QT?usp=sharing" st.markdown( f"Open Colab Notebook", unsafe_allow_html=True )