Python CSS
def myCss():
print ('<style>')
msg="""body
{
color: blue;
font: 12px Arial;
}"""
print(msg)
print ('</style>')
moi_crn