Validation returns DOCTYPE error, and adds it's own html.
w3c validator (on text input) inserts <html lang=''><!DOCTYPE html> following the <!DOCTYPE html> that already exists in page source.
Also shows a non-existent </style> tag after </html> that is not in page source.
How is it that code appears as error when no such code exists in page source?
Error on Google Analytics expected as site source on a local server.
FF Dev shows no console errors aside from google code.
=====Actual page source======
<!DOCTYPE html>
<html lang-‘en’>
<head>
============Validation Results==================
- <!DOCTYPE html><html lang=''><!DOCTYPE html>↩
- <html lang=‘en'>
- <head>↩
====Validation also shows/creates </style> tag after </html>========
</body>↩
</html>↩
</style>
========Actual page source code as follows============
</body>
</html>
