Now that we know how to setup a document, it's time to add some content to it. The image below introduces some basic tags.
A lot of these are self explanatory, but let's discuss some more in depth. Here is these tags in a document:
As you can see most tags I open are followed by a closing tag. Let's break down the {img} and {href} tag.
{img src="name.png"} To add an image to your page you use the img tag. The source of the image equals the filename and where it is stored. For example "screens/image.jpg" if it is in a folder called "screens".
It is important to use exact file names, and correct syntax, otherwise things won't work!
{a href="linklocation.html"}Link Text{/a} The "a href" tag is used to reference a link to another HTML document or website. Start with the link location and then define the text you would like before finally closing the code.
Play around with these tags! Get comfortable with using them and using them correctly! This is only a tiny fraction of the available tags, there are more listed in this app!