Need help with my site

kobaj

VIP Member
I am just getting into the fun of creating webpages. I have a pritty ferm grasp on HTML an all, but I think I am doing something wrong.

I am trying to stick a picture on my webpage, I have this code

(I edited out
HTML:
to make it shorter)
Code:
<BODY>
<IMG SRC="images/untitled-1.jpg" WIDTH=500 HEIGHT=60>
</BODY>

And using my ftp I have uploaded the image to
http://mywebsite.net/images

But when I go to my webpage, It shows a square where my image is supposed to be, but no image. I tried to go to
http://mywebsite.net/images
with firefox, but I keap getting a 403.

So theoreticaly it should work shouldnt it?

(No, http://mywebsite.net is not my real website.)


Look below for new question.
 
Last edited:
You may be having a problem with the link. Lets say your website is www.kobaj.com, and images are stored at www.kobaj.com/images. When you make a link, you may be able to just type images/test.jpg and it will show up, but sometimes that doesnt work (like in your case). I would try entering the entire url, so it looks something like this:

Code:
<html>

<body>

<p>
<img border="0" src="http://www.mysite.com/images/photo.jpb" width="800" height="600"></p>

</body>

</html>
 
Ya, I tried that, unfortuntly it still isnt working.

EDIT:I figured it out, thanks
 
Last edited:
Alright got another question. I have this code to make a rollover image, Whenever I load my page the images wont show up untill I roll my mouse over them once, Then they show up and work perfectly till I refresh again. So whats wrong now?

Code:
<HTML>
<head>
   <title>AIA</title>
<SCRIPT LANGUAGE="JavaScript"><!--
// preload images:
if (document.images) {
clickme1 = new Image(75,22); clickme1.src = "http://www.myhost.com/images/forums1.jpg";
clickme2 = new Image(75,22); clickme2.src = "http://www.myhost.com/images/forums2.jpg";
clickme3 = new Image(75,22); clickme3.src = "http://www.myhost.com/images/blank1.jpg";
clickme4 = new Image(75,22); clickme4.src = "http://www.myhost.com/images/blank.jpg";
clickme5 = new Image(75,22); clickme5.src = "http://www.myhost.com/images/calender1.jpg";
clickme6 = new Image(75,22); clickme6.src = "http://www.myhost.com/images/calender2.jpg";
}
function hiLite(imgName,imgObjName) {
if (document.images) {
  document.images[imgName].src = eval(imgObjName + ".src");
}}

//--></SCRIPT>
</HEAD>
<BODY BGCOLOR="7E7E7E">
<P align="center">
<table border="0" cellspacing="0" cellpadding="0">
<tr><th colspan="2"><IMG Border="0" SRC="http://www.myhost.com/images/main.jpg" WIDTH="800" HEIGHT="80"></th></tr>
<tr><td><A ALIGN="left" HREF="/forum"
   onMouseOver="hiLite('img01','clickme2')"
   onMouseOut="hiLite('img01','clickme1')"><IMG SRC="clickme1.gif" WIDTH="200" HEIGHT="40" BORDER="0" ALT="" NAME="img01"></A></td></tr>
<tr><td><A ALIGN="left" HREF="/blank"
   onMouseOver="hiLite('img02','clickme4')"
   onMouseOut="hiLite('img02','clickme3')"><IMG SRC="clickme3.gif" WIDTH="200" HEIGHT="40" BORDER="0" ALT="" NAME="img02"></A></td></tr>
<tr><td><A ALIGN="left" HREF="/calander.pdf"
   onMouseOver="hiLite('img03','clickme6')"
   onMouseOut="hiLite('img03','clickme5')"><IMG SRC="clickme5.gif" WIDTH="200" HEIGHT="40" BORDER="0" ALT="" NAME="img03"></A></td><TD align="left"><<----Remember to check the normal website for other updates. <A HREF="http://www.anotherhost.com">http://www.anotherhost.com</A></TD></tr>

<TR><TD align="left">Im to cheap to make a pritty button so <A HREF="/Form.pdf">here</A> is the physical form. Call 555-5555 to schedual an appointment</TD></TR>
</table>
</BODY>
</HTML>
 
Back
Top