1
HTML/CSSIntermediate#html#doctype
<!DOCTYPE html> tells the browser to render the page in standards mode using HTML5 rules, rather than quirks mode which emulates old buggy browser behavior. It must be the very first line of an HTML document.
<!DOCTYPE html> <html lang="en"> <head><title>Page</title></head> <body></body> </html>