<!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>