HTML — HTML Boilerplate
Every HTML document starts with a boilerplate — a basic structure that includes the <!DOCTYPE html> declaration and <html>, <head>, and <body> tags.
The boilerplate helps browsers understand how to display the page.
<!DOCTYPE html>
<html>
<head>
<meta charset=\"UTF-8\" />
<title>Boilerplate Example</title>
</head>
<body>
<h1>Hello, Boilerplate!</h1>
</body>
</html>