0
How do I change page background to get rid of the white background, also pictures
I recently started, just wondering.....
4 ответов
+ 4
for bg,
<body bgcolor="white">,
for bg image,
<body background="yourimage.jpg">
or in CSS
body {
background-image: url("yorimage.jpg");
}
0
Thank
0
HTML uses hexadecimal numbers in terms of background colors. ranging from 0-f.
to change your background color you can use this code
<body bgcolor="#0000ff">.
you have succeeded in changing your background color to dark blue. try it your self.
0
<body bgcolor="give your choice of color">
'bgcolor' is used for changing background color in html.