setting backgroung color in css
setting backgroung color in css:
<!DOCTYPE html><html>
<head>
<style>
body {
background-color: white;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
<p>This page has a light blue background color!</p>
</body>
</html>
Comments
Post a Comment