Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css background

<!DOCTYPE HTML>
<head>
	<title>CSS Background Repeat</title>
    <style>
        body {
            background-image: url("hello.png");
            background-repeat: repeat-x;
        }
</style>
</head>

<body>
	<h1>Programming Tutorials In Telugu</h1>
	<p>This is paragraph.</p>
    This is normal text.
</body>
</html>
Source by kothaabhishek.co.in #
 
PREVIOUS NEXT
Tagged: #css #background
ADD COMMENT
Topic
Name
5+9 =