为什么文本在添加样式元素时没有着色

Why Text is not Colored when added a style element

尝试在 H1 标签中同时使用样式添加颜色和字体系列仍然不行 works.Color 属性 对我的当前行没有任何影响

<h1 align="center" style=" font-family:Arial, Helvetica, sans-serif"color:#0000FF">The Island Resort and Spa 
    <br>Welcome to Holiday Speciala</h1>

为什么文字没有颜色?

那里有一点错字..

<h1 align="center" style=" font-family:Arial, Helvetica, sans-serif; color:#0000FF">The Island Resort and Spa 
    <br>Welcome to Holiday Speciala</h1>

因为您使用 " 在 css 属性之间进行分隔,并且按照 style="" 编写的样式属性是错误的,在双引号内您应该写 css属性并使用 ; 将它们分开

style=" font-family:Arial, Helvetica, sans-serif; color:#0000FF"