Help - Search - Members - Calendar
Full Version: Hyperlink Bulletpoints
HTMLHelp Forums > General Interest > Site Review Requests
Mac117127
Hi guys ,
i know there is probably a rookie error in here somewhere, but when i run my code nothing is displayed along side the bullet points.

<!DOCTYPE html>
<html>
<head>
<title> The Moto Hub </title>
</head>

<body>

<h1 style=“text-align:center;”> The Moto Hub</h1>
<ul>
<li><a href=“NewBikes”Insight to the new 2019 Bikes to be release</a></li>
<li><a href=“PrevResults”A look back on the results so far the year</a></li>
<li><a href=“UpcomingChamps”An insight to the upcoming championships this year</a></li>
</ul>
</body>
</html>

</html>

If anybody could seem to spot the mistake i would be extremly grateful.
Thanks in advance
Christian J
There are a couple of things. First, only use this: " double quote character in HTML, not the curly one. Second, the link start tags are not closed with a > characters. This is what they should look like:

CODE
<a href="NewBikes">Insight to the new 2019 Bikes to be release</a>



pandy
If you copy this part...

HTML
<h1 style=“text-align:center;”> The Moto Hub</h1>
<ul>
<li><a href=“NewBikes”Insight to the new 2019 Bikes to be release</a></li>
<li><a href=“PrevResults”A look back on the results so far the year</a></li>
<li><a href=“UpcomingChamps”An insight to the upcoming championships this year</a></li>
</ul>


... and go paste it between the body tags in the text area found at http://htmlhelp.com/tools/validator/direct.html.en the validator will tell you a lot of useful things.

Alas "our" validator doesn't do HTML5, hence the above procedure, and, alas again, the W3C validator at https://validator.w3.org/ that does handle HTML5 recently started to give an almost illegible output even for an old-time validator lover as myself. By all means, try it. But I think you'll understand the output from our validator better.
Christian J
Now I noticed there's an extra </html> end tag as well.
pandy
So there is.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2024 Invision Power Services, Inc.