Posts: 9,007
Name: Tim Daily
Location: Apex, NC, US, Sol 3
|
Something to help keep you on track:
--Whatever you open, make sure you close it.
--Keep your structure in mind when you code.
That is, you are making a menu from an unordered list. Put your opening and closing <ul> tags in first. Put in opening and closing <li> tags between them. These items are links, so put in opening and closing <a> tags between them. Copy and paste as many of these as you need between the <ul> tags. Then type in your specific text or <img> between each set of <a> tags as applies to your menu. By doing it this way you should never have a validation problem, which in your case is predominantly from missing opening and closing tags.
|