I have a dataframe which I convert to html format in Pandas with to_html() function. The format of the table itself is:
<table border="2" class="dataframe">
<thead>
<tr style="text-align: center;">
<th>AF</th>
<th>Enlaces Forms</th>
</tr>
</thead>
<tbody>
<tr>
<td>60</td>
<td>https://forms.office.com/Pages/ResponsePage.aspx?id=uIG64v4DfECWofS8D1Eu</td>
</tr>
.
.
.
what I would like to do is to replace the part where the forms link is to include some title and hiding the whole link to make it more readable. I know in html is with href="{link}" title=... but I do not know how to implement it here. Any help would be appreciated