I am trying to add multiple Dataframes to a single HTML page with different Headers.
Currently, I am using to_html function to add multiple Dataframes in the HTML page.
Can anyone please help me to add multiple DFs in one page with line breaks and Headers like tags.
Thank You
with open("Res.html", 'w') as _file: _file.write(df1.to_html(border=5) + df2.to_html(index=False,border=5) + df3.to_html(na_rep="",border=5) + +df4.to_html(na_rep="",border=5))@jezrael