Let's start:
In a terminal, touch a file you want to make and edit. The reason for simply making an empty file with touch is to ensure you save the file with the .html extension.
Code: Select all
touch practice.html
Code: Select all
<html>
</html>
Code: Select all
<html>
<body>
</body>
</html>
Code: Select all
<html>
<body>
<h1> PORTEUS TIPS </h1>
</body>
</html>
Code: Select all
<html>
<body>
<h1> PORTEUS TIPS </h1>
<p> Welcome to awesome! This will be so much fun
you may not be able to contain your joy.
Just to see this come up immediately in a big browser like Firefox, Chromium, or even the smaller ones like
Netsurf might make your day.</p>
</body>
</html>
This isn't comprehensive, and there are many tags you can use to format your text, do hyperlinking to other parts of the text, insert photos etc. You get the idea.
The important thing here was to actually DO something without having to read 897 pages of html-for-beginners. Don't think this is only for those who lived in 1995 when 14.4k modems were popular.
Tip: While it is fun to constantly edit with your text and tags and flipping to see it in your browser, it might be easier to keep your concentration by banging out all your text without tags first, and then mark it up with tags later! In more complicated scenarios, it isn't just a document pretty-upper, but an actual logical language of it's own.