Project Title
Author, Technology Service Center, University of Delaware
20XX-XX-XX
Motivation for this Work
Insert a paragraph of the motivation of this work.
This is a subtitle
This is text.
Hyperlink to an externel website
A table is below:
| Item | In Stock | Price |
|---|---|---|
| Python Hat | True | 23.99 |
| SQL Hat | True | 23.99 |
| Codecademy Tee | False | 19.99 |
| Codecademy Hoodie | False | 42.99 |
This is an image:

Interactive plot is below:
This is a map:
Reading from a public Google Sheet (code and display the data):
import pandas as pd
sheet_id = "1jcZAtyEZ_5Q7ruPaUYxErM_a4UP9dP9PwbnsRnVl0hE"
url = f"https://docs.google.com/spreadsheets/d/{sheet_id}/gviz/tq?tqx=out:csv"
df = pd.read_csv(url)
df.head()| Food | Cost | |
|---|---|---|
| 0 | Apple | 1.99 |
| 1 | Pineapple | 3.99 |
| 2 | Chicken | 4.99 |
| 3 | Noodles | 2.99 |
This is code snippet that is NOT runned:
def isOdd(n):
if n%2 == 0:
return False
return True