Empty HTML page

How to create an empty HTML page, no title, no favicon

Web

You want to start a new HTML page from scratch, you want it clean:

ok, show me the code!

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width">
  <title>&lrm;</title>
  <link rel="icon" href="data:image/x-icon;base64,AA">
</head>
<body>
</body>
</html>