Web Page Creation notepad++

83 views Asked by At

Beginner Entered this code into a validator and was receiving a stray end error and bad character errors. They gave me solutions but I have no idea what these mean. Couldn't find anything online without bringing me to this site. This is html5 and I am using notepad++ if this helps any..

<ul> <li>a< href="http://Blackboard.mccneb.edu">Blackboard Course Web Site</a> </li> <li>a< href="http://www.mccneb.edu">Metro Web Site</a> </li> <li>a< href="http://validator.w3.org">W3C (X)HTML Validator</a> </li> <li>a< href="http://jigsaw.w3.org/css-validator/">W3C CSS Validator</a> </li> </ul>

1

There are 1 answers

1
Error100 On BEST ANSWER

It looks like your problem is syntax mistake. Instead of

<a href="http://Blackboard.mccneb.edu">Blackboard Course Web Site> 

use

<a href="http://Blackboard.mccneb.edu">Blackboard Course Web Site</a>

The W3Schools website should be able to help if you have similar questions or problems in the future.