Doctype stands for Document Type, which type of document is this ! This declaration is made on a HTML page at the beginning of the source code, like the following:
<!doctype html>
As HTML5 is case-insensitive language, you may also write as:
<!Doctype html>
or
<!DOCTYPE HTML>
But it is always good to stick to single writing style, either upper case or lower case throughout your HTML source code.
Comments
Post a Comment