<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Title</title>
</head>
<body>
<!-- Content here -->
</body>
</html>
<!DOCTYPE html>
: Declares the document type.<html lang="en">
: Root element, specifies language.<head>
: Contains metadata, title, and links to stylesheets.<body>
: Contains the visible content of the page.