Of course you did!.. although I am half wondering whether its just laid-back Trinidad coding style
Seriously though, in case you didnât know, before you type in your code to post it here in the forum, click on the </> icon in the menu at the top of the text editor. You will see 2 sets of 3 back ticks.
```
```
If you now input your code between these, you will end up with nicely formatted code, which is then also easier for you to organise with the correct spacing and indentation etc.
You should end up with something like this (obviously without all the comments)âŚ
<!DOCTYPE html>
<html> <!-- root element: encloses all of the content -->
<head> <!-- encloses everything that is not content displayed
directly on the web page for users to see and read -->
<meta charset="utf-8"> <!-- allows text containing most characters
from most languages to be displayed -->
<title>Text appearing in browser tab or when page bookmarked</title>
</head>
<body>
<!-- encloses all content displayed directly on the web page
for users to see and read i.e. text, images, videos etc. -->
</body>
</html>
No more excuses!