Program to insert Background Image
[php]
<html>
<head>
<style type="text/css">
body {background-image:url(‘systeuser/desktop/bc.jpg’);}/*inserting background image*/
</style>
</head>
<body>
<h1>Hello!</h1>
</body>
</html>
[/php]
output:
Hello!
(If u run this code in Internet Explorer,the background image will be displayed with “Hello!” Message).
No comments yet.