Plotly/Dash deploy showing different text family on other computers

Hello @ytex,

Welcome to the community!

Since you are not providing the font in a link on the website, (via a style), the website have the fallback of Open Sans.

Yours is looking properly because you’ve downloaded it.

To fix this, you’ll need to do something like this in the dash:

app = Dash(__name__, external_stylesheet=['link to web font'])
1 Like