C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
HTML <html> tagThe <html> tag represents root of an HTML document hence also called as root element. It is a container of all elements (except <!Doctype> ) such as <body>, <head> and each element which appears in an HTML document. It tells the browser that the document is an HTML document. Before the <html> tag we can only use <!Doctype> declaration which gives information about the HTML version to the browser. Syntax<html>....</html> Following are some specifications about the HTML <html> tag
Example 1<!DOCTYPE html> <html> <head> <title>HTML tag</title> </head> <body> <h2>Example of HTML tag</h2> <p> Write your main Content within Body of the HTML document. </p> </body> </html> Output: Attribute
Global attributeThe <html> tag supports the global attributes in HTML Event attributeThe <html> tag supports the event attributes in HTML. Supporting Browsers
Next TopicHTML I Tag
|