How to add links in my page?

I did read the docs (html.Link | Dash for Python Documentation | Plotly) but I did not find a way. The link did not appear.

Part of code that matters:

app.layout = html.Div([
    html.Link(href='https://github.com/jornalistagustavoribeiro', style={'textAlign':'right'})

Hi @gustavoandalou
Try using html.A() instead. See if that works

The same. The link dissapear. Whats the format?

app.layout = html.Div([
    html.A(href='https://github.com/jornalistagustavoribeiro', style={'textAlign':'right'})

you need to add a link description with:

html.A(href='https://github.com/jornalistagustavoribeiro', 
children="Click here to Visit my link"),

This part is actually what the user sees on the webpage. The href attribute tells the computer where to go, but itโ€™s not what the user sees.