Background Color Explain
The background-color
property specifies the background color of an element.
The background color of a page is set like this.
background-color
property specifies the background color of an element.Html Code:
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: lightblue;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
<p>This page has a background color!</p>
</body>
</html>
Post a Comment