Relative path in HTML

You say your website is in http://localhost/mywebsite, and let’s say that your image is inside a subfolder named pictures/: Absolute path If you use an absolute path, / would point to the root of the site, not the root of the document: localhost in your case. That’s why you need to specify your document’s folder in order to access the pictures folder: And it would … Read more

Why is this HTML5 document invalid?

Well, it depends on what you are using. if you are using the File Upload option, it depends on which encoding the HTML file was saved with. if you are using the Direct Input option, it depends on the navigator. If you don’t want the validator to guess, and use UTF-8, you can add the following line inside the the head … Read more