Printable Version of Topic

Click here to view this topic in its original format

HTMLHelp Forums _ Site Review Requests _ Hyperlink Bulletpoints

Posted by: Mac117127 Mar 1 2018, 05:01 PM

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

Posted by: Christian J Mar 1 2018, 06:34 PM

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>




Posted by: pandy Mar 1 2018, 08:01 PM

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.

Posted by: Christian J Mar 2 2018, 05:57 AM

Now I noticed there's an extra </html> end tag as well.

Posted by: pandy Mar 2 2018, 10:17 AM

So there is.

Powered by Invision Power Board (http://www.invisionboard.com)
© Invision Power Services (http://www.invisionpower.com)