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
I know I'm going to regret this... but here I go.
No, Luigi, you cannot put a list into a heading. It does not belong
there. Look at a table of contents. The first thing you see is the
heading, usually "Table of Contents", then you see the chapters and the
page numbers, a list. Notice that the list of pages and numbers is NOT
within the heading of Table of Contents.
Now you could have something like:
<h1>All About Toddlers</h1>
<h2>Feeding</h2>
<ul>
<li><a href="milk.php">Milk</a>
<ul>
<li><a href="howmuch.php">How Much</a></li>
<li><a href="when.php">When to Give</a></li>
</ul>
</li>
<li><a href="vegetables.php">Vegetables</a>
<ul>
<li><a href="summer.php">Summer Veggies</a></li>
<li><a href="winter.php">Winter Veggies</a></li>
<li><a href="spring.php">Spring</a></li>
<li><a href="fall.php">Harvest Veggies</a></li>
</ul>
</li>
</ul>
<h2>Sleeping</h2>
and so on...