Re: Having issues designing my website any words of wisdom?
You have to upload the file to a directory on your hosting account, usually /images. Your public_html folder is your website directory which equates to /. Images folder is /images if it exists, you have to create it. After uploading you add the text inside one of your webpages such as:
<a href="http://yourlinkaddr" alt="textifimagedoesntshow"><img src="images/yourfilename.extension" /></a>
This is the most basic form, there's no need for an image size property or an ISMAP property unless you want one large image with multiple "hot spots" on it.
Re: Having issues designing my website any words of wisdom?
Get comfy with this site: W3Schools. Start with HTML.
Re: Having issues designing my website any words of wisdom?
Quote:
Originally Posted by
flameethrower
that code has to be added to the body in the code. then you direct your .html in the place and the image and save it. once saved the server should update that page on the .com and you should see it.
<A HREF="welcome-richs-ball-pythons.html">
<IMG SRC="images/enter.jpg" ALT="Richs Ball Pythons!" ISMAP
HEIGHT=600 WIDTH=600 align=middle>
</A>
Above is what mine looks like to give you idea. just fill it in with your file names and be sure its in the body.
ok so lets use this as an example. (sorry im still learning)
<HTML>
<HEAD>
<TITLE>my first web page</TITLE>
</HEAD>
<BODY>
<!-- what would I use after the HREF=, of mine and also the ALT -->
<A HREF="welcome-richs-ball-pythons.html">
<IMG SRC="images/enter.jpg" ALT="Richs Ball Pythons!" ISMAP
HEIGHT=600 WIDTH=600 align=middle>
</A>
</body>
</HTML>
Re: Having issues designing my website any words of wisdom?
Quote:
Originally Posted by
Nate
Yea I use W3 ALOT lol any way guys thanks a bunch im stepping otu for about a hour or soo be back later with more questions!
Re: Having issues designing my website any words of wisdom?
<HTML>
<HEAD>
<TITLE>Top Browser Bar Text Here</TITLE>
</HEAD>
<BODY>
<A HREF="yourwebpagefileorexternallink.html">
<IMG SRC="images/yourimagefile.jpg" ALT="Alternate Text if image doesn't exist" align=middle />
</A>
</body>
</HTML>
Creates a simple page with an image in the center of the page. When image is clicked you go to whatever site or page you linked it to.
Re: Having issues designing my website any words of wisdom?
I got it fiqured out! so far any way.. My brother does all this crap for a living, he helped explain it to me. Also I went through the entire W3 HTML tutorial about 4-5 times today haha. great site!:gj: