HTML Minimal Document

Example of a minimal HTML document structure.

Preview

Code

<!DOCTYPE html>
<html>
<head>
  <title>My Page</title>
</head>
<body>

  <h1>Hello World</h1>
  <p>My first HTML page.</p>

</body>
</html>

More HTML Basic Examples (6)