How can I force the browser to use HTML 5

-3 html

How can it be done? I tried to write my html file like this:

<html>
    <head>
    </head>
    <body>
    </body>
</html>
Run Code Online (Sandbox Code Playgroud)

but it don't think that it forced html 5, in fact it didnt even work

Kei*_*eno 5

Try to add this before your html script:

<!doctype html>
Run Code Online (Sandbox Code Playgroud)