Creating cards within Dash

Hi guys,

Currently I am doing my thesis about a dashboard. This dashboard needs to contain a specific view where information is displayed as the following:

Can you guys help me out how to make this in python, using dash and/or plotly?

What i mean with the specific view is the list. The list is build from a specific dataframe. I know how to display an array with information but dont know how to do this with a dataframe:

html.Div(
className=“trend”,
children=[
html.Div(id=‘my-list’, children=[html.P(i) for i in trends])
],
)