Every HTML document must start with a document type declaration: <!DOCTYPE html>. The HTML document itself begins with <html> and ends with </html>.
<!DOCTYPE html> - Document type<html> - Root element<head> - Meta information<title> - Page title (shown in browser tab)<body> - Visible page contentEdit the code below and click Run to see the result live.