我正在尝试设置使用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中添加样式标签吗?

最佳答案

HTML的样式使用CSS完成。首先,您需要学习CSS基础。

然后,您可以提供单独的CSS样式文件或内联样式HTML代码:

  htmlfile.write("<h1 style='color: red; text-align: center'>Fruit-properties</h1>\n")

关于python - 如何在python的html页面中添加html样式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31419888/

10-09 15:20