|
Posted by Jonathan N. Little on 08/20/06 13:18
Friedhelm Neyer wrote:
> well, haveing the following peice of source code
1) Please do not top post.
2) Please do not interject your question into some other thread, you
have already have a thread for this question, I am sorry that you did
not receive the answer that you wished for.
3) You example code is just horrible in so many ways. I will not just
trash it but annotate to help you out...
> ...
[1] [2]
> <p><b><font size="5" color="#FFDE24">Die ersten
> Mess-Sucher-Kameras</font></b></p>
[3]
> <p><font color="#FFDE24" style="font-size: 12pt">1948 wird die Nikon I
[4] [5]
> [<b><a target="_blank" href="TD-Messsucher.htm">TD</a></b>]
> vorgestellt, eine Sucherkamera mit dem Filmformat 24x32mm (man sieht,
> ...
>
> the hyperlink TD opens a new window - but I cannot find out how to code
[6]
> the last line in the window "Close this window"
>
[1] Stop using presentational markup, if you want to change the
appearance do it in the stylesheet, if you want to emphasis a statement
then use the semantic EM or STRONG.
[2] Kill the FONT elements! Style in your stylesheets as stated in [1]
[3] Points are for printing, not for the web page which is a
presentational medium, use % or em
[4] TARGETs on A elements are for use with frames, (and please avoid
frames). Don't open links in new windows as you where told in your
original thread. I like many have modern browsers that can suppress
popups and we may wish to open your link in a new TAB. Don't force a new
window on us. Serve your visitors, not you.
[5] Not really a very descriptive link text, not as bad a 'click here'
but I would think 'Nikon I TD' would be a minimum
[6] Isn't that what the little 'X' is in the upper right-hand corner of
the window is for! Seriously, Most folks know how to close a window. As
stated before you should force a new window to begin with and a close
link cannot be done in HTML but requires JavaScript.
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
[Back to original message]
|