You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/css/Background repeat repeat x....

34 lines
853 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>background-repeat repeat x</title>
<style type='text/css'>
html, body {
height: 800px;
}
body {
background-image: url('http://www.lovelylovesayings.com/images/Notebook-romantic-kiss-and-rain.jpg');
background-repeat: repeat-x;
}
</style>
</head>
<body>
One look<br>
One smile<br>
One touch<br>
One embrace<br>
One kiss<br>
One love<br>
Two people<br>
Two minds<br>
Two souls<br>
Two destinies<br>
One road<br>
One journey<br>
One ending<br>
Together.<br><br>
Melissa Higgins
</body>
</html>