You may want to take a look at the code of your site. I'm aware you probably don't know HTML (the language of websites), so I will bear with you.
First of all, you are using non-breaking spaces where you don't need to. I don't know how exactly you were doing that, but it's best to just use a single space (i.e. press of the spacebar).
Second, it looks like you're using line breaks to display part of the background. I guarantee that this will not work to do what you want to do. It's better to use a single image (either by Composer's Image button, or through the HTML <IMG> tag).
Third, you should consider using CSS over HTML attributes in your document. The W3C (the people that made the HTML specification) say that the <FONT> tag, which you are using, is outdated.
Fourth, yellow text on a white background is hard to read.
Here's a modified version of your original that you can copy/paste and use . . .
- Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<!-- This tells us what language you have written the page in -->
<meta content="text/html; charset=UTF-8"
http-equiv="content-type">
<!-- The title of the page -->
<title>Legalize</title>
<!-- This is the page's styling information; without it, you will
only have minor styling like bold text -->
<style type="text/css">
body {color: #FFFF00; background-color: #FFFFFF;}
a:link {color: #33ff33;}
a:active {color: #CC0000;}
a:visited {color: #990099;}
.em {font-weight: bold; color: #ff0000;}
</style>
</head>
<!-- This is the actual content of the site -->
<body>
<!-- This text and image are centered -->
<div style="font-family: helvetica,arial; font-size: 24pt; text-align: center;">
<p>Legalize Sportswear</p>
<img alt="" src="/LegalizeShorts.JPG" style="width: 640px; height: 480px;">
</div>
<!-- End the centered text and image -->
<hr>
<div style="font-size: 14pt;">
<p>In the early 90s, these Boxer Shorts were conceptionalized
<span style="font-weight: bold;">but</span>were a little ahead of
their time. <span style="text-decoration: underline;">Now</span>,
it is a topic heard
daily. We offer them at $15.00 US per pair. All sizes are
available: Small, Medium, Large, and Extra Large. New
elastic will be sewn in prior to shipping. Shipping is generally
via United States Postal Service, Priority Mail with Confirmed Delivery
at $4.40. This cost would accommodate up to 4 pair. Payment
by Certified Check or Money Order. Please be sure to
include the <span class="em">size</span> and <span class="em">shipping address</span>
with order.</p>
<p>Please see further pictures below.</p>
</div>
<!-- NOTE: NEVER put your e-mail address as text, ALWAYS use mailto:address. -->
<p>Order or information email: <a href="mailto:jlw3@atnex.net">click here</a></p>
<!-- Per the HTML 4.01 Strict schema, it is required that this style-less DIV be present
containing the images -->
<div>
<img alt="From Where?"
src="/LegalizeFromWhere.JPG"
style="width: 640px; height: 480px;"><img alt="Even Pups Like"
src="/P4190505.JPG"
style="width: 640px; height: 480px;"><br>
</div>
</body>
</html>
Just keep in mind to
remove the spaces in the image URLs, and load them into the site's parent (root) directory.
UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.11) Gecko/20050728 Donzilla/0.8PR1 (WML/1.3)
Laptop: HP Compaq nx6325 - Turion 64 X2 @ 2GHz, 2GB DDR2, 100GB HD, ATI Radeon X300, 15" LCD, Seven Pro
Handheld: Palm Treo 650 - Intel PXA270 @ 312MHz, 10MB RAM, 32MB flash, 2.7" LCD, Palm OS 5.4