Quote:
Originally Posted by Moonsabie
|
That's if you want a gallery.
If you just want background that will resize to fit different screen sizes, you can use the following:
Code:
<head>
<style type="text/css">
body {background-image: url("image.jpg")}
</style>
</head>
<body>
<p>Text goes here.</p>
</body>
If that's close to what you want but not quite, I'd recommend taking a look at
this W3Schools page.