Chris
Chris

Reputation: 53

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

Upvotes: 5

Views: 5947

Answers (1)

Lance
Lance

Reputation: 3932

Those are not warnings. They are informational notes.

Your document is fine.

Upvotes: 4

Related Questions