1<!DOCTYPE html>
2<html>
3 <!-- your code here -->
4</html>
5
6
7<!-- html tag is a non-self closing tag in html, it represents the beginning
8 and end of your entire code.All the other tags, elements, attributes,etc.
9 comes between html tags.
10
11 The HTML <doctype> tag is used to tell the browser which version of
12 HTML the document is using. It has no end tag (self-closing tag).
13 For HTML5 version we write <!DOCTYPE html>.
14-->
15
16