0
Html. How change color the <h1> any text </h1>?
4 Respuestas
+ 3
<h1 style="color:red;">Any text </h1>
+ 1
<h1 style="color:blue;">any text</h1>
+ 1
Attribute 'color' of html element <font> ( <font color="red"> ) is deprecated in HTML5, as the <font> too... You must use css instead both ^^
0
In CSS: h1 { color: red; } in HTML: <h1 style="color:red;">any text</h1> and HTML5 as Krishna said, add color:red to opening h1 tag.