7 Answers
New AnswerFound it! Sry it has text. <html> <head> <title>first page</title> </head> <body bgcolor="#000099"> <h1> <font color="#FFFFFF"> White headline </font> </h1> </body> </html>
This is what I found! <p> <html> <head> <title>first page</title> </head> <body <h1> <font color="#FF0000"> Text Goes Here! Text is red.." </font> </h1> </body> </html></p>
You have to use CSS (or inline styling). Use the "background" or "background-color" property. Example: body { background: red; } /*The entire document's background is red*/ div { background-color: blue; } /*All the div elements' background is blue*/
Check this thread on sololearn on how to use background color https://www.sololearn.com/learn/CSS/1103/
SoloLearn Inc.
4 Embarcadero Center, Suite 1455Send us a message