Key Ideas
1<!DOCTYPE html> tells the browser to use standards mode HTML5.
2<html lang="en"> the root element; lang aids accessibility and SEO.
3<head> holds metadata — title, charset, viewport, links to CSS.
4<body> holds everything visible on the page.
5meta viewport is required for the page to be responsive on mobile.