Help with paragraphs please?

liunx

Guest
You can view the page at : <!-- m --><a class="postlink" href="http://www22.brinkster.com/tallpox">http://www22.brinkster.com/tallpox</a><!-- m --><br />
<br />
There are no pop up adds :)<br />
<br />
I am very new to HTML so bare with me. As you will see if you visit the link, there is some text that I want to place directly under the image as a new paragraph. I have tried using the <p></p> tags but the text still sits to the right of the image. I also tried using the <BR> tags several times -this worked but I figure there must be an easier way.<br />
<br />
This is a project from a course I am on and I don't think they want us to use tables.<br />
<br />
Please note: the text Gallaxy music LTD is in the correct position and I don't want to move it.<br />
<br />
Many thanks.<!--content-->See the code in the attachment.<!--content-->Thank you for the attachment.<br />
<br />
As I said in the post I had done this.<br />
I guess that's the only way to do it then? I just assumed there would be a simpler way.<br />
<br />
Thanks for the speedy reply.<!--content-->use: <br clear=all><br />
<br />
<P><FONT size=6>GALAXY MUSIC LTD.</FONT> </P> <br />
<br clear=All>I want this text to go underneath the image in a new <br />
paragraph<!--content-->Hi there brintonwhite,<br />
<br />
If you want to position stuff precisely you might like to consider using 'CSS' like this<html><br />
<head><br />
<title>Gallaxy Music</title><br />
<style type="text/css"><br />
div.one<br />
{<br />
position:absolute;<br />
top:200px;<br />
left:20px;<br />
font-family:arial;<br />
font-size:14px;<br />
color:#000000;<br />
}<br />
div.two<br />
{<br />
position:absolute;<br />
top:300px;<br />
left:300px;<br />
font-family:comic sans ms;<br />
font-size:24px;<br />
color:#ff0000;<br />
}<br />
</style><br />
</head><br />
<body><br />
<br />
<div class="one">I want this text to go underneath the image in a new paragraph</div><br />
<div class="two">I want this text to go whatever position I want</div><br />
<br />
<img src=http://www.htmlforums.com/archive/index.php/"musicbanner.gif" alt="Gallaxy banner" align="left" width="400" height="150"><br />
<p><font size="6">GALAXY MUSIC LTD.</font></p><br />
<br />
</body><br />
</html><br />
<br />
coothead<!--content-->Thanks for all the replies guys.<br />
<br />
Great.<!--content-->
 
Back
Top