...

/

Doctype in HTML5: Programming Challenge

Doctype in HTML5: Programming Challenge

This lesson will help get you hands-on practice on the usage of Doctype in HTML5. Let's begin!

Applying concepts

Write code below for the Doctype declaration in HTML5 and the complete boilerplate for HTML5 in the code widget given below.

Implement your solution below

  • HTML
html

Solution

<!DOCTYPE html> <!-- The <!DOCTYPE> declaration is NOT case sensitive -->
<html>
<head>
<title>Title of the document</title>
</head>
<body>
The content of the document......
</body>
</html>
  • The <!DOCTYPE> tag is an ...