Memorizing a minimum web page template

<!doctype html>
<html>
<head>
<charset="utf-8">
</head>
<body>
Hello World!
</body>
</html>

You will probably memorize this faster if you write by hand onto paper. Repeat writing this basic web page code a couple of times a day until you can do it perfectly without peeking at this guide or any other version.

It does not matter if it takes you only one day or ten. Stick with it until these lines become natural to do from scratch.

You can see if the file opens correctly as a web page.

If there is ANY extra or missing code piece, the page will fail to display correctly. The goal is for the page to just say "Hello World!" near the top of the page in the browser window.

Making a Webpage Work Environment