PrettyTables.jl => Font Type and Size

How can I change the font type and size of the HTML output generated using PrettyTables.jl and presented in Pluto?
It is possible to rotate the text of the header 45º degrees?

begin

data=fill(1.0,4,4)
header=[“aaaaa”,“bbbbbb”,“cccccc”,“dddddd”]

pretty_table(HTML,data; backend = Val(:html), header = header,standalone = true,tf=tf_html_simple, nosubheader=false)

end