A Simple tool for all those who want to HTML validate their articles

| | 1 min read

Are you looking for a way to HTML validate your articles? Please try this. Normally, we can try any online HTML validator available over internet.
What we need is to just copy our page URL to the tool and validate it. But if you want to validate your content with your custom HTML formatting, before
publishing it in your site, you can try this method.

The following method follows strict.dtd for validation.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr" >
<head>
<title>Zyxware Technologies | Just the right IT solutions</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>

<!-- Place your Article content here... -->

</body>
</html>

Place your content between <body> tags and copy it to W3C Validator -> Validate by Direct Input [http://validator.w3.org/#validate_by_input] and check.