我正在尝试设置使用Python创建的HTML页面,但不知怎的,我没有得到它。
以下是没有样式标记的代码
htmlfile = open(fruit+".html")
htmlfile.write("<html>\n")
htmlfile.write("<head>\n")
htmlfile.write("<title> homepage </title>\n")
htmlfile.write("</head>\n")
htmlfile.write("<body>\n")
htmlfile.write("<h1> <center> <b> {color:red;} Fruit-properties </b> </center> </h1>\n")
htmlfile.write("</body>\n")
有谁知道如何在python中添加样式标签?
答案 0 :(得分:1)
使用CSS完成HTML样式设置。首先,您需要学习CSS基础知识。
然后,您可以提供单独的CSS样式文件或内联样式HTML代码:
htmlfile.write("<h1 style='color: red; text-align: center'>Fruit-properties</h1>\n")