473,395 Members | 1,738 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Please review my website

http://www.geocities.com/stmetanat/index.htm

Website in HTML 4.0 with CSS1. Unicode characters used. Tested with
Internet Explorer 6.0, Mozilla 1.3 and Lynx 2.8.3. Designed to be
viewed by any browser, including Lynx. Checked with the W3C validation
service (though the javascript that Geocities affixes to each page
makes it invalid). No frames. HTML coded entirely by hand.

Also article of interest:
Smart Usage of Smart Quotes
http://www.geocities.com/stmetanat/smartquotes.htm
Jul 20 '05 #1
15 2137
Heathen Dawn wrote:
http://www.geocities.com/stmetanat/index.htm

Website in HTML 4.0 with CSS1. Unicode characters used. Tested with
Internet Explorer 6.0, Mozilla 1.3 and Lynx 2.8.3. Designed to be
viewed by any browser, including Lynx. Checked with the W3C validation
service (though the javascript that Geocities affixes to each page
makes it invalid). No frames. HTML coded entirely by hand.


You should move away from Geocities. It's a very bad neighborhood.
Other than that, I find the white text a bit hard to read.

--
Google Blogoscoped
http://blog.outer-court.com
Jul 20 '05 #2
Heathen Dawn wrote:
http://www.geocities.com/stmetanat/index.htm

Website in HTML 4.0 with CSS1. Unicode characters used. Tested with
Internet Explorer 6.0, Mozilla 1.3 and Lynx 2.8.3.


White text on pink background is very difficult for me to read.

--
Brian
follow the directions in my address to email me

Jul 20 '05 #3

"Brian" <us*****@mangymutt.com.invalid-remove-this-part> wrote in message
news:0617b.392389$Ho3.59091@sccrnsc03...
Heathen Dawn wrote:
http://www.geocities.com/stmetanat/index.htm

Website in HTML 4.0 with CSS1. Unicode characters used. Tested with
Internet Explorer 6.0, Mozilla 1.3 and Lynx 2.8.3.


White text on pink background is very difficult for me to read.


Also, won't white text on a colored background disappear when a user tries
to print the page, unless the user has set a browser option to print
background colors?

Jul 20 '05 #4
sp*******@writeme.com (Heathen Dawn) wrote:
http://www.geocities.com/stmetanat/index.htm


Do not use <p class="reg"> with Arabic and Hebrew text!

Further tips for RTL scripts:
http://ppewww.ph.gla.ac.uk/~flavell/...direction.html
Jul 20 '05 #5
sp*******@writeme.com (Heathen Dawn) wrote:
http://www.geocities.com/stmetanat/index.htm


In your source text, you have
(alqur'ân)
in Arabic letters inside English-language text. This may be displayed,
depending on font size and window size, at the end of a line as
(nâ'ruqla
)

Therefore write
<span dir="rtl" lang="ar">(alqur'ân)</span>
as recommended in
http://ppewww.ph.gla.ac.uk/~flavell/...direction.html
This keeps parentheses together with the word.
Jul 20 '05 #6
On Mon, Sep 8, Andreas Prilop inscribed on the eternal scroll:
Therefore write
<span dir="rtl" lang="ar">(alqur'ân)</span>


Good point: however, I have no idea how to solve the
parentheses which contain a ltr word followed by an rtl word, such as
(if you'll excuse the "ascii art") the example: (Tanakh, werbeH)

If I try to put the Hebrew and its closing parenthesis inside an rtl
span then it - not surprisingly - gets presented as

(Tanakh (werbeH

which is no use. But if I don't, then the linebreak which you talk
about is unavoidable, when it happens to fall at that spot.

cheers

--
I am coming to the conclusion that, as the sum of human knowledge
increases, more and more people feel overwhelmed by the sheer mass of
it, and cope with the problem by metaphorically pulling the bedcovers
over their heads and refusing to know anything at all. - Sue on uk.railway
Jul 20 '05 #7
Harlan Messinger wrote:
"Brian" <us*****@mangymutt.com.invalid-remove-this-part> wrote in
message news:0617b.392389$Ho3.59091@sccrnsc03...

White text on pink background is very difficult for me to read.


Also, won't white text on a colored background disappear when a user
tries to print the page, unless the user has set a browser option to
print background colors?


Or the author has specified a print stylesheet (or specified that the
stylesheet only applies to medias other than print, e.g.
media="screen,projection").

--

Mark Parnell
http://www.clarkecomputers.com.au
Jul 20 '05 #8
On Tue, Sep 9, Alan J. Flavell inscribed on the eternal scroll:
(if you'll excuse the "ascii art") the example: (Tanakh, werbeH) [...] then the linebreak which you talk
about is unavoidable, when it happens to fall at the closing ")"

^^^^^^^^^^^

Apparently not. If I mark it up thus:

<span dir=ltr>(Tanakh, werbeH)</span>

leaving the characters which are naturally rtl to take care of
themselves, then it seems to "do the right thing" with the closing
parenthesis (I tried on Moz 1.4 and Win IE 6, anyway).

Should have been obvious, now that I think about it. Sorry.
Jul 20 '05 #9
Andreas Prilop <nh******@rrzn-user.uni-hannover.de> wrote in message news:<080920032242266937%nh******@rrzn-user.uni-hannover.de>...
Do not use <p class="reg"> with Arabic and Hebrew text!


Why not? And how else am I supposed to justify and marginise the text?
Jul 20 '05 #10
On 9 Sep 2003, Heathen Dawn wrote:
Do not use <p class="reg"> with Arabic and Hebrew text!
Why not?


Because the Arabic and Hebrew text comes out left-aligned, ragged-right
in Netscape 7.0. (Don't know why.) Looks really silly.
And how else am I supposed to justify and marginise the text?


You are not supposed to. No justification without hyphenation!
We have *no* reliable way of hyphenation on the web for Latin text.
Therefore "justify" is a nuisance for Latin/Cyrillic/Greek text.
For Arabic and Hebrew, it is nothing but idiotic to try to force
justified text. Leave Arabic and Hebrew text right-aligned, which
is far better readable. To achieve this, it is sufficient to
write <p dir="rtl" lang="ar"> ; you don't need any text style.
Label *all* your text with lang="en" lang="ar" lang="he" ,
even single words with <span>. Mozilla/Netscape will then
apply the preferred typefaces for Arabic and Hebrew chosen by
the user in his browser's prefs.
http://ppewww.ph.gla.ac.uk/~flavell/...ers-fonts.html

Jul 20 '05 #11
I wrote:
Therefore write
<span dir="rtl" lang="ar">(alqur'ân)</span>
as recommended in
http://ppewww.ph.gla.ac.uk/~flavell/...direction.html
This keeps parentheses together with the word.


I have prepared a small test document
http://www.unics.uni-hannover.de/nht...rentheses.html
that illustrates this effect. It shows (again) that it is not
sufficient to rely on Unicode's and browsers' line wrapping algorithms.
You need to insert dir="rtl" dir="ltr" into your documents.
Jul 20 '05 #12
On Tue, Sep 9, Andreas Prilop inscribed on the eternal scroll:
I have prepared a small test document
http://www.unics.uni-hannover.de/nht...rentheses.html
that illustrates this effect. It shows (again) that it is not
sufficient to rely on Unicode's and browsers' line wrapping algorithms.
You need to insert dir="rtl" dir="ltr" into your documents.


Good, but you have no examples where the contents of the parenthesis
begins with ltr text and ends with rtl text, such as we could see in
a couple of places in the page that was under discussion.

all the best
Jul 20 '05 #13
"Alan J. Flavell" <fl*****@mail.cern.ch> wrote:
http://www.unics.uni-hannover.de/nht...rentheses.html


Good, but you have no examples where the contents of the parenthesis
begins with ltr text and ends with rtl text, such as we could see in
a couple of places in the page that was under discussion.


Here it is:
http://www.unics.uni-hannover.de/nht...entheses2.html
Jul 20 '05 #14
"Alan J. Flavell" <fl*****@mail.cern.ch> wrote:
I have prepared a small test document
http://www.unics.uni-hannover.de/nht...rentheses.html


Good, but you have no examples where the contents of the parenthesis
begins with ltr text and ends with rtl text,


This is a bit puzzling - and Mozilla and IE behave differently for such
text. But let's first look at the above example. The two paragraphs
with proper DIR markup should wrap correctly and should allow the
selection of characters with your mouse. In the two paragraphs without
proper DIR markup, the selection behaves erratic.

Any observations with Mozilla 1.4, Opera, other browsers?
Jul 20 '05 #15
OK, thank you much, folks. I've taken your comments into hand. I've
cancelled text justification. I've also done away with using tables
for layout, using a DIV with CSS bordering instead. As well, all
non-English text is now encompassed by <SPAN lang="langname"> markup
(also with "dir" when necessary).

I regard myself as an HTML purist, but it's always good to hear from
HTML purists who have been much longer on the scene :-).

---------

Marvelst thou not how matter combineth,
And assembles itself in wonderful shapes?
Protons, electrons move of their own accord:
The atoms are arranged at no-one's behest!
Shlomi Tal's Metaphysical Naturalism Pages
http://www.geocities.com/stmetanat/index.htm
Jul 20 '05 #16

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: M.E.Farmer | last post by:
Hello all, I have been working on a Pyrex colorizer, and need a little feedback. PyrexTypes are orange and PyrexKeywords are violet ( this will be fully extensible when finished ). Please review...
4
by: Dave Patton | last post by:
I'd appreciate any feedback on http://www.elac.bc.ca/ particularly in regards to the stylesheet. http://www.elac.bc.ca/style.css only has one line: @import "elac.css"; so the 'real stuff' is in:...
20
by: Jack Schitt | last post by:
I thought I was starting to get a handle on Access, until I tried doing something useful...now I'm stuck. I have a DB with two tables - to keep it simple I'll say that one is an Employee File...
22
by: KitKat | last post by:
I need to get this to go to each folders: Cam 1, Cam 2, Cam 4, Cam 6, Cam 7, and Cam 8. Well it does that but it also needs to change the file name to the same folder where the file is being...
32
by: Tom Cole | last post by:
I bet 50% of the posts I've read lately have had at least one bad thing to say about every website or book dedicated to javascript. There are clearly a few posters (you know who you are) who...
2
by: Amir Michail | last post by:
Hi, I would appreciate a review of this site: http://forwardingtree.com Is it self-explanatory? Would you use it? Are there any issues with copyright? Are there any issues with putting...
1
by: OutdoorWorldAdventures | last post by:
I have been trying to do any type of form that my web viewers can submit a picture and story for review to be submited to my website. I use Yahoo Business as my host and everything. I even tried...
112
by: Prisoner at War | last post by:
Friends, your opinions and advice, please: I have a very simple JavaScript image-swap which works on my end but when uploaded to my host at http://buildit.sitesell.com/sunnyside.html does not...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.