<!DOCTYPE html>
<html lang="en">
<head>
  <title>Example of CSS background-repeat</title>
  <style type="text/css">
    body {
        background-image: url("app-assets/images/gallery/gradient.svg");
        background-repeat: repeat-x;
    }
  </style>
</head>
<body>
    <h1>This is a heading</h1>
    <p>This is a paragraph.</p>
</body>
</html>