HTML Doctype
The HTML <!DOCTYPE> tag is used to specify which HTML version of the document is using. It is called a document type declaration (DTD). The <!DOCTYPE> is not a tag or element it just lets the browser know about the HTML version or any other markup language used in the document. It does not have ending tag. Note:The Doctype is case-insensitive. Example <!DOCTYPE html> <html> <head> <title>Your…
View On WordPress










