Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML <!doctype html public "">

Tags:

html

One of the new doctype declarations can be specified as:

<!doctype html>

But recently I came across one which was slightly different (view source on http://html5boilerplate.com/):

<!doctype html public "">

But I couldn't figure what is it for, public part?

Thanks.

like image 410
Dmitry F Avatar asked Oct 20 '11 02:10

Dmitry F


1 Answers

You missed one important character

<!doctype html public "✰">

Inside the quotes is a star character. They like putting it everywhere. Its valid but not in any way useful :P

like image 157
Andrew Avatar answered Sep 28 '22 01:09

Andrew