![]() |
|
|
|
#1 |
|
Hello,
I am wondering whether I should use an unordered list (UL) for the links which are contained in the <h1></h1> on the page https://www.scaiecat-spa-gigi.com/index.php -- Luigi Donatello Asero https://www.scaiecat-spa-gigi.com/sv/faktaomitalien.php 我是æ„大利人 Luigi Donatello Asero |
|
|
|
|
#2 |
|
Posts: n/a
|
On 2006-08-17, Luigi Donatello Asero wrote:
> Hello, > I am wondering whether I should use an unordered list (UL) for the links > which are contained in the <h1></h1> on > the page https://www.scaiecat-spa-gigi.com/index.php If it's a list, it belongs in a list element. I don't think they belong inside the <h1> element, though. More like: <h1>Scaiecat Spa Gigi - Homepage</h1> <ul> <li><a href="https://www.scaiecat-spa-gigi.com/sv/valkommen.php"> Svenska</a> <li><a href="https://www.scaiecat-spa-gigi.com/it/benvenuti.php">Italiano</a> <li><a href="https://www.scaiecat-spa-gigi.com/en/welcome.php">English</a> <li><a href="https://www.scaiecat-spa-gigi.com/de/willkommen.php">Deutsch</a> <li><a href="https://www.scaiecat-spa-gigi.com/fr/bienvenue.html">Français </a> <li><a href="https://www.scaiecat-spa-gigi.com/es/bienvenidos.html">Espanol</a> <li><a href="https://www.scaiecat-spa-gigi.com/dk/velkommen.html">Dansk</a> <li><a href="https://www.scaiecat-spa-gigi.com/ee/tere-tulemast.html">Eesti keel</a> <li><a href="https://www.scaiecat-spa-gigi.com/fi/tervetuloa.php">Suomea</a> <li><a href="https://www.scaiecat-spa-gigi.com/pl/witamy-w.html">Polski</a> </ul> -- Chris F.A. Johnson <http://cfaj.freeshell.org> ================================================== ================= Author: Shell Scripting Recipes: A Problem-Solution Approach (2005, Apress) |
|
|
|
#3 |
|
Posts: n/a
|
Luigi Donatello Asero wrote:
> Hello, > I am wondering whether I should use an unordered list (UL) for the links > which are contained in the <h1></h1> on > the page https://www.scaiecat-spa-gigi.com/index.php > Again "Why?" What purpose does the list of links have to do with the heading for your page? -- Take care, Jonathan ------------------- LITTLE WORKS STUDIO http://www.LittleWorksStudio.com |
|
|
|
#4 |
|
Posts: n/a
|
Luigi Donatello Asero wrote:
> Hello, > I am wondering whether I should use an unordered list (UL) for the links > which are contained in the <h1></h1> on > the page https://www.scaiecat-spa-gigi.com/index.php > On second thought, are you making cognitive decisions in your markup or are you just randomly mixing elements together "just to see what happens"? -- Take care, Jonathan ------------------- LITTLE WORKS STUDIO http://www.LittleWorksStudio.com |
|
|
|
#5 |
|
Posts: n/a
|
Deciding to do something for the good of humanity, "Jonathan N. Little"
<> declared in alt.html: > On second thought, are you making cognitive decisions in your markup or > are you just randomly mixing elements together "just to see what happens"? *cough* Eliza! *cough* -- Mark Parnell My Usenet is improved; yours could be too: http://blinkynet.net/comp/uip5.html |
|
|
|
#6 |
|
Posts: n/a
|
"Chris F.A. Johnson" <> skrev i meddelandet news:680dr3-... > On 2006-08-17, Luigi Donatello Asero wrote: > > Hello, > > I am wondering whether I should use an unordered list (UL) for the links > > which are contained in the <h1></h1> on > > the page https://www.scaiecat-spa-gigi.com/index.php > > If it's a list, it belongs in a list element. > > I don't think they belong inside the <h1> element, though. More > like: > > <h1>Scaiecat Spa Gigi - Homepage</h1> > > <ul> > <li><a href="https://www.scaiecat-spa-gigi.com/sv/valkommen.php"> Svenska</a> > <li><a href="https://www.scaiecat-spa-gigi.com/it/benvenuti.php">Italiano</a> > <li><a href="https://www.scaiecat-spa-gigi.com/en/welcome.php">English</a> > <li><a href="https://www.scaiecat-spa-gigi.com/de/willkommen.php">Deutsch</a> > <li><a href="https://www.scaiecat-spa-gigi.com/fr/bienvenue.html">Français </a> > <li><a href="https://www.scaiecat-spa-gigi.com/es/bienvenidos.html">Espanol</a> > <li><a href="https://www.scaiecat-spa-gigi.com/dk/velkommen.html">Dansk</a> > <li><a href="https://www.scaiecat-spa-gigi.com/ee/tere-tulemast.html">Eesti keel</a> > <li><a href="https://www.scaiecat-spa-gigi.com/fi/tervetuloa.php">Suomea</a> > <li><a href="https://www.scaiecat-spa-gigi.com/pl/witamy-w.html">Polski</a> > </ul> The validator does not display any error if I do not use a list. Furthermore I wonder whether I could have used a list inside a heading. If not, why. Of course I know that you may do what you have done. Ps.: I am busy with Chinese, at the moment. It is not always so easy... -- Luigi Donatello Asero https://www.scaiecat-spa-gigi.com/sv/faktaomitalien.php ä½*åœ¨ä»€ä¹ˆæ—¶å€™åƒæ—©é¥*了 ? |
|
|
|
#7 |
|
Posts: n/a
|
Deciding to do something for the good of humanity, Luigi Donatello Asero
<> declared in alt.html: > The validator does not display any error if I do not use a list. Why would it? > Furthermore I wonder whether I could have used a list inside a heading. IIRC it is permitted by the DTD, but it doesn't make any sense. -- Mark Parnell My Usenet is improved; yours could be too: http://blinkynet.net/comp/uip5.html |
|
|
|
#8 |
|
Posts: n/a
|
"Chris F.A. Johnson" <> skrev i meddelandet news:680dr3-... > On 2006-08-17, Luigi Donatello Asero wrote: > > Hello, > > I am wondering whether I should use an unordered list (UL) for the links > > which are contained in the <h1></h1> on > > the page https://www.scaiecat-spa-gigi.com/index.php > > If it's a list, it belongs in a list element. > > I don't think they belong inside the <h1> element, though. More > like: > > <h1>Scaiecat Spa Gigi - Homepage</h1> > > <ul> > <li><a href="https://www.scaiecat-spa-gigi.com/sv/valkommen.php"> Svenska</a> > <li><a href="https://www.scaiecat-spa-gigi.com/it/benvenuti.php">Italiano</a> > <li><a href="https://www.scaiecat-spa-gigi.com/en/welcome.php">English</a> > <li><a href="https://www.scaiecat-spa-gigi.com/de/willkommen.php">Deutsch</a> > <li><a href="https://www.scaiecat-spa-gigi.com/fr/bienvenue.html">Français </a> > <li><a href="https://www.scaiecat-spa-gigi.com/es/bienvenidos.html">Espanol</a> > <li><a href="https://www.scaiecat-spa-gigi.com/dk/velkommen.html">Dansk</a> > <li><a href="https://www.scaiecat-spa-gigi.com/ee/tere-tulemast.html">Eesti keel</a> > <li><a href="https://www.scaiecat-spa-gigi.com/fi/tervetuloa.php">Suomea</a> > <li><a href="https://www.scaiecat-spa-gigi.com/pl/witamy-w.html">Polski</a> > </ul> I think that this is approximately what I had had just a few days ago.... I am looking for something new. -- Luigi Donatello Asero https://www.scaiecat-spa-gigi.com/sv/faktaomitalien.php ä½*在什么时候早é¥*了 ? |
|
|
|
#9 |
|
Posts: n/a
|
In article <i%PEg.13465$>,
"Luigi Donatello Asero" <> wrote: > Hello, > I am wondering whether I should use an unordered list (UL) for the links > which are contained in the <h1></h1> on > the page https://www.scaiecat-spa-gigi.com/index.php You should be wondering how better to set this bit out, can't you see that your Scaiecat Spa Gigi - Homepage Svenska Italiano English Deutsch Franæºis Espanol Dansk Eesti keel Suomea Polski needs a deeper sort of ordering, the difference between good and bad not at all contained in the difference between ul and ol? -- dorayme |
|
|
|
#10 |
|
Posts: n/a
|
"Mark Parnell" <> skrev i meddelandet news:1rcowtd7t36dd$.... > Deciding to do something for the good of humanity, Luigi Donatello Asero > <> declared in alt.html: > > > The validator does not display any error if I do not use a list. > > Why would it? > > > Furthermore I wonder whether I could have used a list inside a heading. > > IIRC it is permitted by the DTD, but it doesn't make any sense. Now, you may have links within <p></p> without necessarily writing a list may you not? So, what is the difference? -- Luigi Donatello Asero https://www.scaiecat-spa-gigi.com/sv/faktaomitalien.php ä½*在什么时候早é¥*了 ? |
|