473,748 Members | 2,281 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Which version in LH for?

I have a web page that uses an unordered list (<UL>) and the LH (list
header) tag. I know LH is a valid tag because it is clearly defined by
the W3C here: http://www.w3.org/MarkUp/html3/bulletlists.html
The problem is, when I try to validate the page at W3C, it tells me:
" element "LH" undefined "
My page is 4.01 Transitional, using charset windows-1252.
Any ideas why this won't validate?
Jul 20 '05 #1
133 13257

"Jane Withnolastname" <Ja************ **********@yaho o.com> wrote in message
news:rf******** *************** *********@4ax.c om...
I have a web page that uses an unordered list (<UL>) and the LH (list
header) tag. I know LH is a valid tag because it is clearly defined by
the W3C here: http://www.w3.org/MarkUp/html3/bulletlists.html
The problem is, when I try to validate the page at W3C, it tells me:
" element "LH" undefined "
My page is 4.01 Transitional, using charset windows-1252.
Any ideas why this won't validate?


You're trying to validate for HTML 4.01
http://www.w3.org/TR/html401/index/elements.html

Yet you cite something that is part of a 3.0 spec that never even went
public.

--
Karl Core

Charles Sweeney says my sig is fine as it is.
Jul 20 '05 #2
On Wed, 6 Aug 2003 22:13:45 -0400, "EightNineThree "
<ei************ @REMOVEeightnin ethree.com> wrote:
You're trying to validate for HTML 4.01
http://www.w3.org/TR/html401/index/elements.html

Yet you cite something that is part of a 3.0 spec that never even went
public.


Well, see, that's all I wanted to know. I had no idea it was not
carried forward to newer versions, and there was nothing I could find
on the W3C site to tell me that. That's why I asked. Thanks.
Jul 20 '05 #3
Jane Withnolastname wrote:
On Wed, 6 Aug 2003 22:13:45 -0400, "EightNineThree "
<ei************ @REMOVEeightnin ethree.com> wrote:
You're trying to validate for HTML 4.01
http://www.w3.org/TR/html401/index/elements.html

Yet you cite something that is part of a 3.0 spec that never even went
public.


Well, see, that's all I wanted to know. I had no idea it was not
carried forward to newer versions, and there was nothing I could find
on the W3C site to tell me that. That's why I asked. Thanks.


Sure there was!

<URL:http://www.w3.org/TR/html401/>

or even

<URL:http://www.w3.org/TR/REC-html32> (for historical use only)

--
Shawn K. Quinn
Jul 20 '05 #4
On Thu, 7 Aug 2003 06:59:45 +0000 (UTC), "Jukka K. Korpela"
<jk******@cs.tu t.fi> wrote:
The LH element would have served an important purpose, though it was not
well designed and defined - after all, HTML 3.0 was just a sketchy draft.
One might even say that almost all lists should have list headers in some
sense. But they can be of different kinds. For example, the HTML 3.0 draft
example

<UL>
<LH>Table Fruit</LH>
<LI>apples
<LI>oranges
<LI>bananas
</UL>

contains a "list header" that would best be presented as a heading, in
HTML as currently (and traditionally) defined, e.g.

<h3 class="lh">Tabl e Fruit</h3>
<UL>
<LI>apples
<LI>oranges
<LI>bananas
</UL>
I noticed in the source of the page that the above is what they used,
rather than the LH tag, which really baffled me at the time.
Normally we don't want to have a big
vertical gap between a "list header" and the list itself, but the default
top margin for <ul> (in most browsers, and endorsed by sample style sheets
in CSS specifications) tends to create such a gap. Even when a class
attribute is used, it can be difficult to remove that gap, due to CSS
technicalities , but that's a different story.


Yes, it was the vertical gap I was trying to get rid of. I got around
the whole thing by writing the entire list, including the LH tag, in
JavaScript. Yeah, I know that's cheating, and probably won't display
right on some browsers, but as long as it looks right on IE6 and
Validates, that's all I really care about :)
Jul 20 '05 #5
On Thu, 07 Aug 2003 11:47:26 -0500, "Shawn K. Quinn"
<sk*****@xeviou s.kicks-ass.net> wrote:
Jane Withnolastname wrote:
On Wed, 6 Aug 2003 22:13:45 -0400, "EightNineThree "
<ei************ @REMOVEeightnin ethree.com> wrote:
You're trying to validate for HTML 4.01
http://www.w3.org/TR/html401/index/elements.html

Yet you cite something that is part of a 3.0 spec that never even went
public.


Well, see, that's all I wanted to know. I had no idea it was not
carried forward to newer versions, and there was nothing I could find
on the W3C site to tell me that. That's why I asked. Thanks.


Sure there was!

<URL:http://www.w3.org/TR/html401/>

or even

<URL:http://www.w3.org/TR/REC-html32> (for historical use only)


There is nothing about LH or list headers in the above pages.
Jul 20 '05 #6
Jane Withnolastname <Ja************ **********@yaho o.com> wrote:
Yes, it was the vertical gap I was trying to get rid of.
So CSS would be the answer, wouldn't it?
I got around
the whole thing by writing the entire list, including the LH tag, in
JavaScript.
That sounds like pointless kludgery of the year. And you mean you use LH
tag?
Yeah, I know that's cheating,
And unsuccessful at that.
and probably won't display
right on some browsers,
YM "is guaranteed to fail on all browsers, except if they happen to
support JavaScript and have that support enabled".
but as long as it looks right on IE6 and
Validates, that's all I really care about :)


So you're really not interested in the topic of this group, authoring for
the WWW, are you?

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html

Jul 20 '05 #7
Jane Withnolastname <Ja************ **********@yaho o.com> wrote:
Sure there was!

<URL:http://www.w3.org/TR/html401/>

or even

<URL:http://www.w3.org/TR/REC-html32> (for historical use only)


There is nothing about LH or list headers in the above pages.


That, Lady Jane, is exactly the point.

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html

Jul 20 '05 #8
On Fri, 8 Aug 2003 07:49:59 +0000 (UTC), "Jukka K. Korpela"
<jk******@cs.tu t.fi> wrote:
Jane Withnolastname <Ja************ **********@yaho o.com> wrote:
Sure there was!

<URL:http://www.w3.org/TR/html401/>

or even

<URL:http://www.w3.org/TR/REC-html32> (for historical use only)


There is nothing about LH or list headers in the above pages.


That, Lady Jane, is exactly the point.


But the point was lost in that I had this tag and couldn't figure out
why it wasn't there. Hence my initial post to this newsgroup, to find
out why it wasn't there.
Jul 20 '05 #9
On Fri, 08 Aug 2003 11:06:28 -0500, "Shawn K. Quinn"
<sk*****@xeviou s.kicks-ass.net> wrote:
Jane Withnolastname wrote:
Yes, it was the vertical gap I was trying to get rid of. I got around
the whole thing by writing the entire list, including the LH tag, in
JavaScript. Yeah, I know that's cheating, and probably won't display
right on some browsers, but as long as it looks right on IE6 and
Validates, that's all I really care about :)


The Web is much bigger than IE version 6 with Javascript enabled. You do
realize Googlebot, for example, will not see your list?


I don't want Google - or any search engine - even looking at this
particular page. As for your other concern, please see my response to
Jukka....
Jul 20 '05 #10

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

Similar topics

1
5409
by: RWC | last post by:
Hi Folks, I'm looking for a way to determine if the client machine has access installed and if so, what version. The reason I need this is to determine (programatically) if the Access Runtime is required to be installed and if not, which version of the program database needs to be installed with the current version of Access. (hope that makes sense). If anyonoe could point me in the right direction, I'd really appreciate it.
7
4193
by: Murtix Van Basten | last post by:
Hi all, I will deploy a database project to an Oracle server, but I could not figure out which version of Oracle should I get. Here is my configuration: Hardware: Dell 1750 Dual Xeon 3.2Ghz, 2GB Ram, 3x36GB Hdd on Raid 5 Operating System: Redhat Linux 9 I will deploy only 1 database for the application. Only 1 DBA will use the Oracle server when necessary. When the database once deployed, Only 1
0
1215
by: Kenny | last post by:
Hello everybody, does anyone know which XMI version is compatible to which UML or MOF version? which problems can occur if I use the wrong version of one of the standards? I googled around but didn´t find anything about the compatibility... maybe one of you can help?? thx bye, kenny
14
2828
by: John Bentley | last post by:
Note this is crossposted to comp.lang.javacript and microsoft.public.dotnet.scripting. After some Googling and FAQing my understanding of these terms is, crudely: Javascript (3 different definitions): 1. The scripting language originally developed by Netscape. (I offer a Brief handle: "Original Netscape Script") 2. The current implementation of the ECMAscript 262 (3rd ed.) standard by Netscape. (I offer a brief handle: "Current...
4
6587
by: Yasutaka Ito | last post by:
Hi, Is there a way to determine which version of .NET Framework any given assembly is built with? thanks! -Yasutaka
7
1839
by: | last post by:
As a beginner which .NET sdk should I be downloading from the MS site: http://msdn.microsoft.com/library/default.asp?url=/downloads/list/netdevgeneral.asp My goal is to: 1. Compile some very simple C# classes 2. Use Oledb data adaptor to access an sql server database. I have the .NET framwork installed although I am embarrased to say I don't
4
2296
by: Thomas Eichner | last post by:
Hi, does anybody know a public website which offers a service that displays all data send by a browser (or an app calling the website), especially HTTP GET and POST data, browser data etc.? I have a hard time finding what really my app is sending and this would be a great help! Thank you very much ! Thomas
8
1650
by: G .Net | last post by:
Hi How can I find which version of Access is installed on a computer from within a vb.net application? G
2
1686
by: yuyang08 | last post by:
Dear all, I have a question on the const methods. If a method is overloaded with a const version, in the case that either one is okay (for example, the following code), which shall the compiler pick? Could you tell which section of the C++ standard specifies this? Many thanks! -Andy
0
8995
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8832
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
9331
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8250
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6798
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6077
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4879
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2791
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2216
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.