0
How can i change page bg color with html?
2 Réponses
+ 9
<body bgcolor=red>
+ 3
Arf @VH... very bad practice ^^
bgcolor deprecated.
ugly but autorized practice:
<body style="background:red;">
better practice to externalize css rules:
body { background:red; }