Trouble with HTML tags

liunx

Guest
Hi, I'm designing a webpage in HTML for my Computer Science class and I'm having a hard time getting a few tags to work properly. I want to have the school logo in the center of the part of the page that I'm working on and that be a link to my school's homepage.Here is what i entered and it follows the order in the book, but my image won't appear:<br />
<br />
"<a href=http://www.htmlforums.com/archive/index.php/"http://www.(my school).edu"><img src="logo.jpg" align="center"</a><!--content--><a href=http://www.htmlforums.com/archive/index.php/"http://www.(my school).edu"><img src="logo.jpg" align="center" /></a><!--content-->pyrexyn <a href=http://www.htmlforums.com/archive/index.php/"http://www.(my school).edu"><img src="logo.jpg" align="center" /></a> <br />
<br />
Thats it but without that extra slash:<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"http://www.(my school).edu"><img src="logo.jpg" align="center"></a><br />
<br />
...jaeman<!--content-->The extra slash is just to make it XHTML compliant ;)<!--content-->XHTML code:<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"http://www.(my school).edu" title="useful popup text here"><img src="logo.jpg" alt="text goes here in place of image" align="center" /></a> <br />
<br />
<br />
HTML code:<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"http://www.(my school).edu" title="useful popup text here"><img src="logo.jpg" alt="text goes here in place of image" align="center"></a><!--content-->don't do much xhtml, thanks for the low down on it... jaeman<!--content-->
 
Back
Top