An interactive web map of volcano locations throughout the USA..
To html in python use folium to install folium in you system you need
pip3 install folium
This will help you to create good website for map.
Use of pandas
pip3 install pandas
Below is another example of displaying
import csv
with open("sample.csv","r") as csvinput: # read input csv file
reader = csv.reader(csvinput) # create a reader
for row in reader:
print(row[0])