- Joined
- Mar 10, 2021
- Messages
- 2
- Points
- 0
Please Tell me About " Write A Background Color In Html? " Comment Down Below
Attachments
-
6.2 KB Views: 3
<body bgcolor="#ff0000">
<h1> BG IS RED </h1>
</body>
Just creating a class with css like thisPlease Tell me About " Write A Background Color In Html? " Comment Down Below
<div style="background-color: #ff00ff;"> Content </div>
Here’s an example of how you can set the background color of an HTML page using inline CSS:Please Tell me About " Write A Background Color In Html? " Comment Down Below
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: lightblue;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>