HTML Coding Examples
HTML Coding Examples
1. Background Attributes
<!DOCTYPE html>
<html>
<head>
<title>Background Attributes Example</title>
</head>
<body bgcolor="lightblue" background="background.jpg">
<h1>This page has a background color and image</h1>
<p>The background is light blue with an image.</p>
</body>
</html>