DOCTYPE (Document Type Declaration) khai báo phiên bản HTML đang sử dụng, đặt ở dòng đầu tiên.
- HTML5 chỉ cần
<!DOCTYPE html>. - Giúp trình duyệt render đúng chuẩn (standards mode).
- Không có DOCTYPE → quirks mode: box model, CSS parsing khác nhau giữa các browsers, gây lỗi hiển thị.
DOCTYPE (Document Type Declaration) declares the HTML version being used and must be placed on the very first line.
- HTML5 only needs
<!DOCTYPE html>. - It tells the browser to render in standards mode.
- Without DOCTYPE, the browser enters quirks mode — causing inconsistent box model and CSS parsing across browsers, leading to display bugs.