Home Logic Battle Card RPG Godot Tutorials Linux Gaming Blog NodeJS + Postgres LAMP Stack HTML CSS PHP ReactJS VR Tech Blog Palm Beach Techie PHP Fiddle

Intro to HTML: !DOCTYPE Tag

Quick Copy Boxes


<!DOCTYPE html> This is actually not an HTML tag. It tells the web browser which verson of HTML you are using.

<!DOCTYPE html>

<!DOCTYPE html> indicates that you are using HTML5.

<!DOCTYPE html> should always be the first line of your HTML document. It is important for the web browser to know what version of HTML you are using, so your content is appropriately displayed.