Display “Hello HTML5” with a doctype and root element

Source

<!DOCTYPE html>

<html> <!-- Root element -->
  Hello, HTML5!
</html>

Result

Hello, HTML5!

Discussion

The root element surrounds all html source code, with the exception of the doctype. More elements should also be specified, and these will certainly be covered in later exercises.