HTML5 Validation with Nu Html Checker

I check the HTML5 page and return these 2 warnings: Info: Content-Type was text / html. Using an HTML parser. Info: Using a schema for HTML with support for SVG 1.1, MathML 3.0, RDFa 1.1, and ITS 2.0.

I'm not sure the problem is in the meta tag.

This is my code:

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title> Home Page</title> <link type="text/css" rel="stylesheet" href="css/style.css" /> </head> 

Thanks in advance, CA

+5
source share
1 answer

This is not a warning. These are information notes.

Your document is in order.

+4
source

All Articles