0
How i Can Set Background color
4 Respostas
+ 13
For adding styles inside your document:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<style>
body {
background-color: blue;
}
</style>
</head>
<body>
</body>
</html>
+ 3
/*css*/
background:#000;
+ 2
body {
background: linear-gradient(to right bottom, #f08010, #8050a0, #1080f0);
}
0
oh thanks