Hello again Ben,
Sorry if you already know any of this, thought I'd best start at the beginning!
There are two ways of displaying an image, using the IMG tag or using CSS to apply a background to an element.
It seems the two are getting mixed up here, to use the IMG tag simply use:
HTML Code:
<img src="welcome.jpeg" />
Or you could do this using CSS;
Notes:
- I'm using an H1 tag here for accessibility reasons - all HTML should have a purpose when styles are turned off, this is a whole other story though!
- Set the width and height to the dimensions of your image,
- The text indent hides the text that will only be displayed when styles are turned off.
CSS
HTML Code:
h1#welcome {
text-indent: -9999px;
background-image: url("welcome.jpeg");
background-repeat: no-repeat;
background-attachment: fixed;
width: 100px;
height: 100px;
display: block;
}
HTML
HTML Code:
<h1 id="welcome">Welcome to my [url=http://www.eukhost.com/]website hosting[/url]</h1>