+ 2
Background is not made by html and css
3 Respuestas
+ 4
c++ do not work with html.
HTML, CSS, JavaScript and PHP.
<body style="background:black;">
+ 1
it is made from image file or color.
You still can use javascript to add background into html or via css.
+ 1
c++ is not use for web development
use to change the background of webpage:-
html
<body style="background-color:red;">
</body>
-----------------------------------------------------------
css
body{
background-color:red;
}