Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML5 Validating with Nu Html Checker

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

I'm not sure if the problem is about 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

like image 281
Chris Avatar asked Sep 27 '22 09:09

Chris


1 Answers

Those are not warnings. They are informational notes.

Your document is fine.

like image 168
Lance Avatar answered Oct 01 '22 20:10

Lance