Multree.com RELAUNCHED
-
- KVRist
- 88 posts since 16 Sep, 2003 from Austin, Texas
Works for me (XP + IE), including links to photo and graphics pages.
-Polychrome
http://kevinalbers.com/
http://kevinalbers.com/
-
- KVRAF
- 1821 posts since 5 Oct, 2003
Hey Mully,
An ALT tag is a specific piece of code attached to an image to provide an ALTernative for people who can't see them.
Its looks like this:
Hope this helps...
An ALT tag is a specific piece of code attached to an image to provide an ALTernative for people who can't see them.
Its looks like this:
Code: Select all
<img alt="Music" "title="This link takes you to the music page, which offers downloads and other fun stuff" src="/images/abc.jpg" width="115" height="100" border="1" />"Time makes fools of us all. Our only comfort is that greater shall come after us." Eric Temple Bell
http://thetomorrowfile.bandcamp.com/
http://thetomorrowfile.bandcamp.com/
- AcousticHippie
- Topic Starter
- 4769 posts since 12 Mar, 2003
oh ha.... that looks complicated.... I'm not using any fancy navigation anyway.... just some hyperlinks using frontpage
-
- KVRian
- 1262 posts since 15 Feb, 2003 from Up the Pennine way
Seems fine here.
Ok with mozilla and displays fine in diferent sceen settings and bit rates.
You cant beat people up then have them say "I love you"
- AcousticHippie
- Topic Starter
- 4769 posts since 12 Mar, 2003
great thanks fakeyfake wrote:![]()
Seems fine here.I like the colours.
Ok with mozilla and displays fine in diferent sceen settings and bit rates.
fake
- AcousticHippie
- Topic Starter
- 4769 posts since 12 Mar, 2003
err.. nofake wrote:![]()
BTW, do you use "web safe colours"?
fake
- KVRAF
- 2744 posts since 5 Dec, 2003 from Harlan's World
Doesn't work at all on my ZX Spectrum. I'd lose the colors and perhaps keep the text to a maximum of 48 characters per page.
Oh, and no music please. Unless it's 8 bit monophonic beeps.
Oh, and no music please. Unless it's 8 bit monophonic beeps.
My Soundcloud Too many pieces of music finish far too long after the end. - Stravinsky
-
- KVRian
- 1262 posts since 15 Feb, 2003 from Up the Pennine way
multree wrote:err.. nofake wrote:![]()
BTW, do you use "web safe colours"?
fake
Its just that the tutor at this web design course I went on said allways use them as they may not display right on some computers. Somehow I think the info was a bit dated as I don't think it matters with modern stuff.
You cant beat people up then have them say "I love you"
- AcousticHippie
- Topic Starter
- 4769 posts since 12 Mar, 2003
good thinkingfake wrote:multree wrote:err.. nofake wrote:![]()
BTW, do you use "web safe colours"?
fake
Funny, nor do I
![]()
Its just that the tutor at this web design course I went on said allways use them as they may not display right on some computers. Somehow I think the info was a bit dated as I don't think it matters with modern stuff.
fake
btw music page is now up, too
- AcousticHippie
- Topic Starter
- 4769 posts since 12 Mar, 2003
kovacs wrote:and no music please. Unless it's 8 bit monophonic beeps.
- AcousticHippie
- Topic Starter
- 4769 posts since 12 Mar, 2003
guys (and gals - if there happens to be one) you are great - thanks so much
-
- KVRian
- 864 posts since 9 Jul, 2001 from Chester County PA, USA
Actually MickGael's point is a very valid one...it has nothing to do with using "fancy navigation" or not: you actually are using a single graphic image as hyperlink menu (specifically the file index_01.jpg), and if (for example) someone is visually-impared/fully blind and using a text-to-speech converter to try to "read" you page to them (don't laugh, this is much more commonplace than you might realize)...if your graphics-based hyperlinks don't have an ALT atribute they won't be able to know what the link is!multree wrote:oh ha.... that looks complicated.... I'm not using any fancy navigation anyway.... just some hyperlinks using frontpage
For example, your "Graphix" link won't tell them that it says "Graphix"...all they'll be told is "IMAGE" which doesn't tell them what the link is, where it goes, etc.
I looked in your code, and you're using an image-map to split up a single graphic menu JPEG (index_01.jpg) into a bunch of hyperlinks...this could be problematic because while some T2S units might be able to read ALT attributes for each "piece" you created for each hyperlink, some might not.
In terms of HTML code, the changes to what your current image map would need to be something like this....notice for example in the first AREA tag something that says 'alt="Photography" ' and so on...really, it's not as complicated to do as you might think
Code: Select all
<map name="FPMap0">
<area href="photo.html" shape="rect" coords="407, 94, 496, 118" alt="Photography">
<area href="graphix.html" shape="rect" coords="204, 91, 264, 117" alt="Graphix">
<area href="music.html" shape="rect" coords="265, 90, 312, 117" alt="Music">
</map>Other options:
-- Create an all-text-link menu at the bottom of each of your pages to act as an alternate text-based form of navigation. This might be the easiest one to put in place if you're fairly new to web design work.
-- If you must use FP, see if it'll allow you to actually "slice up" the single graphic you're using as a navigation menu into actual separate graphics held together with an HTML table...then each graphic can easily have its own ALT atribute. Other more graphic-specific apps like Photoshop will do this kind of thing pretty easily.
Actually, in your code I see "<!-- ImageReady Slices (multreedotcom.psd) -->" ...which means either you or someone for you is already using Photoshop/ImageReady....so you should be able to do a slice-up pretty easily.
Hope this helps a little!
--Har