Skip to page content or skip to Accesskey List.
Search evolt.org
evolt.org login: or register

Work

Main Page Content

HTML is not an acronym...

Rated 3.79 (Ratings: 17) (Add your rating)

Log in to add a comment
(40 comments so far)

Want more?

 
Picture of csaila

Craig Saila

Member info | Full bio

User since: August 26, 1999

Last login: February 04, 2009

Articles written: 6

HTML is, however, an abbreviation. So what is an acronym?

Unlike, say the French language, there is no official body that determines what is and isn’t proper English. Like the Web, though, there are a series of recommendations from recognized organizations. And, again, like the Web, there are those who disagree with the generally agreed upon usage. Nevertheless, most lexicographers would likely agree with Merriam-Webster’s Collegiate Dictionary which defines:

  • an acronym as “a word (as NATO, radar, or snafu) formed from the initial letter or letters of each of the successive parts or major parts of a compound term;”
  • an abbreviation as “a shortened form of a written word or phrase used in place of the whole.”

The Oxford Companion to the English Language goes so far as to define three types of acronyms:

“HTML” is none of these, rather it is an initialism, which Oxford—among many others—defines as an abbreviation that “consists of the initial letters of a series of words, pronounced in sequence.” Like acronyms, initialisms have word-like qualities, and can take affixes (e.g., pro-CSS, HTMLer).

How to use

Despite these well-recognized definitions, there remains a lot of confusion as to what an acronym is (including some who should know better). On the Web, the blame can likely be traced to the W3C’s own troublesome acronym definition (which was challenged even before HTML 4.0 was recommended). Compounding the problem was Microsoft’s strange decision not to support the abbr element in its Windows-based browsers.

As a result many developers (including myself, for a time) use acronym in place of abbr. Unfortunately, this is exactly the opposite thing that should be done: when in doubt, wrap the abbreviation/acronym/initialism with abbr. Even if it is an acronym, the mark-up will be semantically correct.

Styling

Ironically, to ease the confusion over the W3C’s definition, a new style property, speak, was created. Using it, an acronym could can be styled with “speak: normal” while an initialism could use this: “speak: spell-out.”

Though speak is designed for aural browsers, Mozilla/Netscape 6+ also treat abbr and acronym differently by placing a one-pixel, dotted, black border under the abbreviation. Inspired by the look, many site authors are now adding the following rule to their style sheets:

ABBR, ACRONYM { border-bottom: 1px dotted #000; cursor: help; }

(Internet Explorer on Windows will display this style as a one-pixel, dashed, black border under acronym but not abbr.)

When to use

Another common question about using the abbr and acronym is how often to use them. The Web Content Accessibility Guidelines suggest following the conventions of traditional written English and include the definition in the relevant element’s title when the definition first appears:

<p>Dynamic <abbr title="HyperText Markup Language">HTML</abbr> is a mixture of HTML, <abbr title="Cascading Style Sheets">CSS</abbr>, and JavaScript.</p>

Where the guidelines are unclear is on what to do after that initial reference. Some suggest wrapping the second definition with an element, without the title. The reasoning being that screen readers will see the following references as more than a collection of letters.

Whichever method is used, it should work today and continue to be future-proof.

Craig Saila has been working the Web since 1996, and has redesigned some of North America's top news organizations including msnbc.com and The Globe and Mail. Throughout his work, he’s divided his time between client-side development and online journalism — dual interests which are apparent at his site, saila.com.

Invisible A

Submitted by philsown on August 2, 2002 - 10:22.

It's an acronym if you pronounce it the way I've been trying to get people to for years: Hatchtiml. Think of the vowel as being the A, but it's silent.

login or register to post comments

Addendum: ...but in XHTML 2.0 it could be

Submitted by csaila on August 7, 2002 - 19:54.

The W3C addresses the confusion over acronym in the early draft of XHTML 2.0 by acknowledging it exists. Unfortunately, the response does more to continue the confusion. In what must be an effort to recognize past practices, it suggests authors can use acronym for initialism and acronyms.

This is an earlier draft, and it can still change with public comment.

login or register to post comments

XHTML 2.0 and other stuff

Submitted by bmason on August 8, 2002 - 00:27.

I already made my public comment to them...please either pick a definition for acronym or just deprecate it for abbr already.

As far as the accessibility guidelines go, I wrap all following references in a tag without a title, mostly so that I have the tag there to tie my speak rules to. The exception being if there's an anchor that someone could follow a link to on the page and below the first reference. Then I'll also add a title to the first reference after the anchor so that the user has it there in front of them.

login or register to post comments

How about casual language abbreviations?

Submitted by bearwalk on August 8, 2002 - 02:28.

How do you think common abbreviations in normal sentences should be marked up? For example:

  • I looked in books, newspapers &lt;abbr title=&quot;etcetera&quot;&gt;etc&lt;/abbr&gt;.
  • Don't leave the country &lt;abbr title=&quot;without&quot;&gt;w/o&lt;/abbr&gt; your wallet.

These are abbreviated words, but you wouldn't want them to be pronounced by an aural browser. You'd want the title to be used instead.

We can't assume that aural browsers will know when to automatically replace such abbreviations with their proper words.

You might think that I should spell the words out right from the start, but although this sort of abbreviations may be sparse in the English language, they're used more often in Swedish (my mother tounge), so I can't just stop using them. What should I do?

login or register to post comments

Don't add the help cursor

Submitted by theuiguy on August 8, 2002 - 10:03.

The help cursor, at least on windows, conveys the wrong message. The help cursor is used in applications when you can click on an object to get help about the object. You cannot click on the abbr/acronym to get more information. You have to hover over it to see the tooltip. This is why it was removed from Mozilla. Adding the dotted underline for all browsers makes sense, but skip the cursor.

login or register to post comments

Re: Don't add the help cursor

Submitted by bmason on August 9, 2002 - 00:42.

Well over on my Macintosh, Internet Explorer 5 and iCab have totally different help cursors. Is it a given on the Windows side that all browsers have to use the same help cursor?

If I knew the answer to that, and if I was really that worried about Mozilla's default behavior, I'd file a bug to request that decision be changed. But as long as I can use the cursor, I will. That's exactly why the help cursor is in the spec. It signifies: "Help is available for the object under the cursor." Under, not "when clicked".

If the current implementation is confusing, then I blame either Windows (if its architecture forces this to happen) or Mozilla (if the browser can offer an alternative cursor built into its design but doesn't).

login or register to post comments

HTML

Submitted by Xanadu on August 9, 2002 - 06:59.

HTML definitely IS an acronym. The word comes from the first letters of HyperText Markup Language, just like NATO or FBI is made up. If it were a word like hotmetal that became html, then it would be an abbreviation.

This fits with the definition given from Merriam-Webster’s Collegiate Dictionary at the start of the article.

login or register to post comments

Re: HTML

Submitted by bmason on August 9, 2002 - 07:38.

Actuallly, you just defined why it's not an acronym. "Hypertext" is one word, not two.

login or register to post comments

a lot of confusion

Submitted by pjw on August 9, 2002 - 13:00.

Sorry Craig, I like your writing and your site, but you've got in a semantic muddle here, in order to make an otherwise valid point about coding standards.
To quote your own article " there remains a lot of confusion as to what an acronym is" and certainly from accepted usage this side of the pond, you're as confused as the next person...

Cheers, Paul.

login or register to post comments

ditto ('a lot of confusion')

Submitted by csaila on August 9, 2002 - 18:31.

I don’t know whether I’m in a semantic muddle or just exposing a pre-existing one! (Originally, I had qualified this article’s definition of acronym with: “most North American lexicographers,” but then I checked the British English dictionary...Oxford.) The situation, as it stands now, is confusing, no matter what definition you prefer. I agree whole-heartily with bmason’s plea to the W3C, because I don’ even think it knows the best way to do it.

login or register to post comments

I liked it...

Submitted by marlene on August 9, 2002 - 18:56.

Xanadu, I think you misunderstood Craig's explanation of NATO vs. HTML. As far as I see it, Craig meant that NATO, radar and snafu are acronyms because you *speak* them like words, not spell them out like a group of letters. We say "ray-dar" not are-aay-dee-aay-are. So according to his explanation, "FBI" is an abbreviation, because we spell it out as in "eff-bee-eye" rather than saying "eff-bye". Likewise, HTML is an abbreviation.

Also, on Mozilla 1 Mac the help cursor is different from the one on IE5.5 Mac. I'm curious about the situation with Windows uniformity.

Craig, this was one of the most fun articles I've read since evolt.org was founded.
philsone - lots o' luck (you need it). :o)

login or register to post comments

splitting hairs

Submitted by altherda on August 11, 2002 - 14:43.

Most definitions of 'abbreviation' that I have seen are quite general and in line with the Webster's definition at the beginning of the article, while definitions for 'acronym' and 'initialism' are much more specific. And while the 'initialism' definitions are clear cut in that the letters are to be pronounce individually, a significant number of 'acronym' definitions I came across were not so specific as to say that they are to be 'pronounced as a word', rather that an 'acronym' is 'a word', just as the Webster's definition points out. This ambiguity begs the question: does an 'initialism' qualify as a 'word'. Of this I am not sure, I'd like to hear the opinion of a semantics expert among us. Regardless, I think we can all agree that both 'initialisms' and 'acronyms' are 'abbreviations', and that HTML is, at the very least, an 'initialism'. What is most interesting is Webster's definition of 'initialism':    initialism : an acronym formed from initial letters which provides a nice twist and a mooting possibility. If 'acronyms' are 'abbreviations', 'initialisms' are 'acronyms', and 'HTML' is an initialism, then it logically follows that 'HTML' is an 'initialism', an 'acronym', and an 'abbreviation. Of course, this possibility is consistent only with the above Webster's definition and is contradicted by a few other dictionary sites.

login or register to post comments

splitting hairs

Submitted by jambo349 on August 11, 2002 - 18:25.

does it really matter?

what does my nut is when people talk about getting cash from ATM machines when 'machine' is already included in the acro.

login or register to post comments

Re: does it really matter?

Submitted by bmason on August 11, 2002 - 23:19.

I think it matters. It's a useless tag because it's been around since the draft of 3.0, and the definition of abbr still fits it better than its own definition. And now finally in XHTML 2.0 we finally get an acknowledgement that the various possible definitions of "what is an acronym" are confusing, only to be told "well, you could pick this definition. Or this one. Or this one. Or all of them."

HTML 3.0 is around 7 years old. If we can't define what the tag is for in all that time, do we really need the tag?

login or register to post comments

Recommendation of use

Submitted by julie.roswell on December 12, 2002 - 06:11.

First of all I'd disrecommend the use of Oxford English when writing for an international audience. American English is, in reality, standard—at least on the Web—and that is why the majority spells a word like color, the way I just did. (As does the W3C.)

Now—in code—I recommend this:

  • &lt;acronym&gt;: Use only with strict definition, i.e. for pronounceable abbreviations—if at all.
  • &lt;abbr&gt;: Use if: not pronounceable, always, or when in doubt.

Note: The latter is always correct; and since &lt;acronym&gt; doesn't add any additional functionality—apart from doubtful semantics—it's kind of redundant.

login or register to post comments

Definitions (Standard American English)

Submitted by julie.roswell on December 12, 2002 - 09:36.

I will not discuss the use of term: Standard American English—here. The entry Standard English in The American Heritage Dictionary of the English Language: Fourth Edition. (2000) gives a sufficient description of the meaning of—and ambiguities associated with—this word.

The following definitions are from: The Columbia Guide to Standard American English (1993). (Examples were changed to better reflect the context of this comment.)
A Web version of the book could be found at: bartleby.com (but beware; it's crammed with ad banners).

Definitions:

Abbreviations
are variously shortened forms of words. (e.g. HTML, SMIL, pro, i.e.)
Acronym
are pronounceable abbreviations made up of initial letters or initial parts of words in a phrase. (e.g. SMIL [pronounced "smile"], KISS, Usenet; not acronyms: HTML, W3C.)

Note: Contractions (like: they’re, it's, and doesn't) generally aren't considered abbreviations.


Misc.: There's a lot of different types of abbreviations (and processes of abbreviation). Sometimes abbreviations even become "real" words (like: memo, info, and the Web).

When in doubt, use &lt;abbr&gt;. It won't hurt. I promise.


Best wishes,

Julie Roswell

login or register to post comments

American English is, in reality, standard?

Submitted by MartinB on December 12, 2002 - 10:22.

First of all I'd disrecommend the use of Oxford English when writing for an international audience. American English is, in reality, standard

Only in America, Julie, and for those second language learners who use American texts. However, the reality of the legacy of the British Empire is that most people born in the pre-McDonalds era (ie older than current schoolchildren) learning English do so from British sources. I don't know about current practise in India, Canada, Australia, China etc, but I suspect that that is still the case.

the majority spells a word like color, the way I just did.

I submit that this is anedotal evidence on your part. Possibly the majority of web pages do so, but increasingly not the majority of web users.

(As does the W3C.)

Unless they've started covering language usage in their remit (which I doubt), that's not at all relevant.

login or register to post comments

Re: American English is, in reality, standard?

Submitted by julie.roswell on December 12, 2002 - 16:11.

Hehe... I knew someone would say that Martin. First of all I'd like to disrecommend my very own disrecommendation, of course, everyone should use whatever English they prefer; the majority setting the "standard". My mistake. I apologize.

Out of context: Me: I'm one of those second language learners (I'm Swedish, despite whatever my name indicates) - McD. era b.t.w. - and often use that as an excuse for my sloppy, and generally bad, use of the English language.

Now then, I'll try to say some things that I really should have, but didn't:

There is no absolute truth. Especially not in this case. However. What suggest American English is in majority, and has a dominant influence on World English:

  1. Population: roughly 70% AE vs. 17% BE of all native English.
  2. Powerful economy, magnitude of higher education, and political position.
  3. American publishing, mass media, media tech. and popular culture. (Probably the most significant factor.)

My "anedotal evidence": Pop media rule the world. US rule pop media. Thus, American English rule Web.

Am I right? Am I wrong? Yes, and yes.

The W3C thing was really out of context where I put it in the comment; I was referring to the article sort of. What I tried and failed to state - implicitly - was that if the specs. use AE like color, they should probably use AE for acronyms and abbreviations, too.

login or register to post comments

Re: American English is, in reality, standard?

Submitted by qryss on December 12, 2002 - 19:02.

'Pop media rule the world'

- there's an argument for this, certainly.


'US rule pop media'

- I really think you should get out more (no disrespect). Thinking in terms of pop music (which drives a lot of other culture and behaviour): go to Morocco, for example, and you won't hear any Western music at all (well, hardly). Go to Australia and you'll hear an equal mix of Australian, English and US music. Go to any dance floor and it's Belgian, German, French, English, whatever and practically nix US (unless it's an R'n'B club and why would you go there? ;-) ). Go to India...


You get the picture.


This stuff is very important to remember when you are building such an internationally visible thing as a website. We should respect and enjoy each others' differences - particularly when we are part of a dominant culture.


qryss

login or register to post comments

Re: American English is, in reality, standard?

Submitted by julie.roswell on December 13, 2002 - 12:47.

Maybe it's an oversimplification in a more considerate perspective (like yours).

As Einstein said:

Make everything as simple as possible, but not simpler.

My intension was not in disrespect to any culture(I promise); it was only to point in a direction that would "prove" American English is, de facto, the dominant influence on "World English". Thus, closer to "Standard English" than British English (and any other English: like South African, Indian, or Pakistani).

Perhaps I should have used a better term than popular media - like mass media - which (in my opinion) is ( in a wider perspective) "controlled" by the US.

PS. I really think I should get out more, too. [However, I really don't like the Californicated culture here in Sweden. (Even less, the music that comes with it.)] =)

login or register to post comments

update: XHTML 2.0 and &lt;acronym&gt;

Submitted by julie.roswell on December 14, 2002 - 04:41.

The second XHTML 2.0 Working Draft, XHTML™ 2.0 W3C Working Draft 11 December 2002, makes no mention of &lt;acronym&gt;.

Our conclusion: The acronym element has been removed in favor of the less ambiguous &lt;abbr&gt;. (Good.)

login or register to post comments

I wish I'd seen this earlier ...

Submitted by lloydi on April 24, 2003 - 08:04.

I've recently built a tool that does conversion to acronyms and abbreviations and ran in to all the problems mentioned here (see this page for similar confusion: http://www.accessify.com/archives/2003_04_20_news-archives.asp#200192249)! Anyway, for anyone interested in the topic, here's the tool that I built. At the time of writing, it's very web-centric. in content, and there are still some things that need fixing, but you should find it a useful tool nonetheless!

login or register to post comments

IE6 bad

Submitted by Xanadu on April 24, 2003 - 14:20.

Julie Roswell said:"The second XHTML 2.0 Working Draft, XHTML 2.0 W3C Working Draft 11 December 2002, makes no mention of < acronym >."

Our conclusion: The acronym element has been removed in favor of the less ambiguous < abbr >. (Good.)"

Sadly this spells disaster for IE6, as it doesn't recognise abbr at all!

login or register to post comments

re: IE6 bad

Submitted by granstream on April 29, 2003 - 04:06.

That's Microsoft's problem! I promise. It is. Surely. Anyway, I'm quite sure Microsoft won't be ready for XHTML 2.0 this millenium. Still, it can't be that hard to fix it! It just can't. Really.

I do think it's OK to do these kinds of simplifications, though. I can't see anything bad in this one, at least.

login or register to post comments

xhtml 2

Submitted by Xanadu on April 29, 2003 - 06:53.

I guess it doesn't matter as Microsoft will have to provide a whole new browser for XHTML 2 anyway. If they add the new tags on to the existing one, then abbr is sure to be used.

Of course no-one will be bringing out a new browser until the specs have come out of the draft phase!

login or register to post comments

Never ending...

Submitted by haidary on August 21, 2003 - 13:59.

Well this topic has come up again on my radar and I immediatly thought of this artical.

What caused it was someone on IRC that claimed you should pronounce 'png' as 'ping' instead of 'p-n-g'. I of course disagreed and started an hour long battle. After that rather brutal arguement I went searching for answers. What I found was less than satisfying.

After looking through about 50 acronym sites in a variety of domains such as us, uk, de, fr, edu etc. I found them to all say pretty much the same thing.

"An acronym is a label formed from the beginnings of words (Greek: acro [head] and nym [word]) -- or very rarely, from letters in the middle of words. There is no requirement that an acronym be pronounceable as a normal word (this is a curious myth perpetuated by American dictionaries): IBM is just as much an acronym as LASER."

This of course means that all acronyms are in fact abbreviations but that not all abbreviations are acronyms. An abbreviation is simply a shortened form of a word or phrase. The word 'lab' for 'laboratory' would be an abbreviation but not an acronym, 'FBI' would be both.

A lot of people would argue that 'FBI' is not an acronym simply because of the fact that it's not pronounced as a word. That of course as wrong as my quote and the sites I visited show but exposes an underlying problem with acronyms.

When should we pronounce the acronym as a word, and when shouldn't we? I'm still unable to find the answer to this question. At this point I'm not even sure that one exists. If that's true I'm sure these debates will rage on.

login or register to post comments

clarification

Submitted by Xanadu on August 22, 2003 - 13:21.

The word 'lab' for 'laboratory' would be an abbreviation but not an acronym, 'FBI' would be both.

FBI can't be an abbreviation - it's not short for a longer word starting with "FBI". It is purely an acronym, created from the first letters of the words.

When should we pronounce the acronym as a word, and when shouldn't we?

When the acronym is pronounceable as if it were a real word, then we should most likely say it like a word. But if it makes a hard to pronounce jumble of capital letters, then we should pronounce each letter one by one. So NATO is easy to pronounce (as if there was a word "nato"). Whereas HTML doesn't lend itself to a word-like pronunciation.

Having said that, why don't we say "Usa" for America? Or "Cia" for CIA? Perhaps it's just what the most popular pronunciation is.

login or register to post comments

Re: clarification

Submitted by bmason on August 22, 2003 - 14:06.

It is not a given that an abbreviation is the shorter version of the start of a word. By that standard, Mr. is not an abbreviation.

login or register to post comments

Re: clarification

Submitted by haidary on August 22, 2003 - 19:21.

"A shortened form of a word or phrase used chiefly in writing to represent the complete form, such as Mass. for Massachusetts or USMC for United States Marine Corps." ~ dictionary.com

So you see, all acronyms are abbreviations. Including 'FBI'.

login or register to post comments

Yes, yes

Submitted by csaila on August 22, 2003 - 19:39.

All acronyms are abbreviations; not all abbreviations are acronyms. So, "IRC" is an initialism ("Internet Relay Chat"), and therefore an abbreviation, but it is not an acronym. The same is true for "FBI." The abbreviation "PNG," though, is an initialism ("Portable Network Graphic) and an acronym (pronounced "ping"). Although "Mr." is an abbreviation (for "Mister"), it is neither an initialism nor an acronym.

login or register to post comments

Yes, yes (ammend)

Submitted by csaila on August 26, 2003 - 09:28.

Of course, if I reread my article before posting that last comment, I wouldn't have declared PNG an initialism (which it is not), it's a letter acronym. An initialism, as I should well know, is an abbreviation formed with first letters where each letter is pronounced.

login or register to post comments

PNG pronunciation

Submitted by Xanadu on August 27, 2003 - 03:24.

I always say "P, N, G". I never say "ping". There's no "i" in there. Likewise I say "S, C, S, I", though I know you're meant to call it "Scuzzy" (sigh). So some things can be hard to classify!

Here's one for you. The BBC is sometimes referred to as the "Beeb". What type of word would that be classed as? An abbreviation I guess?

login or register to post comments

The Beeb

Submitted by csaila on August 27, 2003 - 05:03.

Yeah, the "Beeb" would be an abbreviation, although check your local dictionary, it may in fact be cited there as a noun, in which case you may not need to use abbr.

login or register to post comments

Management of CSS for large scale sites

Submitted by topdog1 on August 28, 2003 - 07:11.

.

Given the various content of sites such as evolt, MSDN, BBC, CNN etc how do you manage the various class namespaces so that the look and feel is consistent. .

What design policy do you use when calling nested CSS that alter the previous one. For example having BASE.CSS ending with WEBTV.CSS. .

What is the best policy for slicing up you page and giving each control point a unique classid in the name space. How do you test for duplication, redundancy or error. .

How is the visual to be controlled when you switch to "Print CSS" or "Dyslexic CSS" or "Visually Impaired CSS".

Can anyone point me in the direction of some articles.

I am currently using TopStyle3 and Frontpage2k2 and looking to write the VBA plugin to help with the intergration and management of style - I would prefer not to if I can just buy one :)

login or register to post comments

Management of CSS for large scale sites

Submitted by topdog1 on August 28, 2003 - 07:13.

Given the various content of sites such as evolt, MSDN, BBC, CNN etc how do you manage the various class namespaces so that the look and feel is consistent.

What design policy do you use when calling nested CSS that alter the previous one. For example having BASE.CSS ending with WEBTV.CSS.

What is the best policy for slicing up you page and giving each control point a unique classid in the name space. How do you test for duplication, redundancy or error.

How is the visual to be controlled when you switch to "Print CSS" or "Dyslexic CSS" or "Visually Impaired CSS" Can anyone point me in the direction of some articles.

I am currently using TopStyle3 and Frontpage2k2 and looking to write the VBA plugin to help with the intergration and management of style - I would prefer not to if I can just buy one :)

login or register to post comments

HLEL is an acronym...

Submitted by IsaacSchlueter on August 5, 2004 - 19:29.

98% of Lingual Evolution is by Accident (And the other 2% is advertising.)

Are you all serious? If ever there was a nit that did not need picking, this is it.

I'm all for semantic markup. I'm practically a fanatic when it comes to good semantic communication. But really, the definitions come down to such trivial alleged differences between abbreviations and acronyms. Where are the conceptual differences?

I took a little poll today. From what I found in my utterly un-scientific survey, among computer geeks in San Diego, CA, there is a pretty good concensus about what these words mean, and I doubt that most non-OCD-HTMLer english speakers would not have a problem with these:

Abbreviation
A shortened version of one or more word(s). N Hlywd is an abbreviation for "North Hollywood." "pp5-9" is an abbreviation for "Pages 5 through 9."
Acronym
An abbreviation typically standing for multiple word, made up of fragments of those words. Generally an acronym is represented by a single string of characters without white space, because an acronym is treated grammatically as a single word. (For example, USA or U.S.A., but rarely U. S. A., if ever.) "pp5-9" is not an acronym, because "pp" is not a fragment of the word "pages."
Initialism
What's that?
Are these acronyms? (Guess how many people I asked.)
Proposed AcronymDefinitionIt is an acronymIt is an abbreviation
pp5-9pages 5 through 90%100%
N HlywdNorth Hollywood20%100%
USAUnited States of America100%100%
CACalifornia60%100%
MSNBCMicroSoft-National Broadcasting Network100%100%
HTMLHyperText Markup Language100%100%
XMLeXtensible Markup Language100%100%
XHTMLeXtensible HyperText Markup Language100%100%
radarRAdio Detection And Ranging90% (One person just didn't know, but changed his answer when he found out)90%
Are all acronyms abbreviations?100%
Are all acronyms abbreviations?0%
Acronyms only contain fragments from the beginning of words0%

Language is as it is spoken. So a W3C spec got out which didn't really clarify the difference between ABBR and ACRONYM. Ya know what? I'd rather use ABBR, if only because it's fewer characters, but MSIE doesn't support it, and 90-something percent of the browsers I have to support are MSIE. And M$ does support ACRONYM.

So, I use a great CMS to run my blog, and I built a plug-in to automatically wrap certain strings in "acronym" tags. When/if M$IE supports ABBR, and there aren't any other good reasons not to, I'll change the plug-in, and magically change my whole site to feed up ABBRs instead. (What century is this again?)

So, the W3C and M$, through accident and bad design, blurred the distinction between acronym and abbreviation. BFD. You know what "aweful" used to mean? People don't argue over "bonnet" and "lorrie" and "boot". (Well, alright, some of us do, but strictly for fun!) Language changes, grows, and mutates, in response to the environment and the culture of the people who use it. One would think that a community of new media types would have a better grasp of this concept.

I'd really love to see a test-plan for a variety of highly-used screen readers. A lot of comments on this topic remind me of the blind-leading-blind qualities (please excuse the pun) of Fahrner Image Replacement. What do actual screen readers actually do? How can we optimize our pages to make them more accessible, because really, I don't see what ABBR's got that ACRONYM doesn't - and MSIE handles ACRONYM the way I like.

But T is in the middle of HyperText (a compound noun) , so it's not an acronym, it's an initialism. Please. That is such a trivial objection, I can't even keep up with it.

Isaac Z. Schlueter, HLEL

login or register to post comments

I have seen the light.

Submitted by Xanadu on December 13, 2004 - 01:29.

While looking at a dictionary yesterday it all came clear to me. I'm not even going to read what rubbish I may have written above. Instead I'd like to point you to my latest article, in which I've explained how I see this issue now:

Acronyms And Abbreviations

I re-read the Evolt article above and was glad to see it agrees with me. Or rather, I now agree with it. I also see that a lot of people (including myself in my old work) are getting it wrong. Time to educate the masses!

login or register to post comments

Disrecommend?

Submitted by roobaarb on January 17, 2005 - 05:45.

Is this the same as "deprecate"? I tried find it in "Cambridge Dictionaries Online", on that assumption, including, "Cambridge Dictionary of American English", without success. (Although I don't know if these refer to the standard Cambridge or Cambridge, Massachusetts.) Neither could I find it in "The American Heritage Dictionary of the English Language" .

login or register to post comments

when to use title with abbr

Submitted by wild on February 23, 2005 - 13:37.

I am quite new to this debate and come at it more from a copy editor's point of view, but I think you should always use title, not just for the initial instance of abbr in a page. I am always writing copy with a view to making the page scannable (with headings etc). I can't assume that readers have the time or the inclination to read the whole page. They may well only be interested in the third paragraph and so might not read the full expansion of the abbr in the first paragraph.

login or register to post comments

Also...

Submitted by Xanadu on February 23, 2005 - 13:55.

Also, a document might have anchors in it that a user can enter the page from, thus missing any content above the anchor.

login or register to post comments

The access keys for this page are: ALT (Control on a Mac) plus:

evolt.orgEvolt.org is an all-volunteer resource for web developers made up of a discussion list, a browser archive, and member-submitted articles. This article is the property of its author, please do not redistribute or use elsewhere without checking with the author.