Html and You! First Steps in it :)
[B]So I'm just gonna post some basics that are necessary.
At all times you should start off the document with
Tip: When you make a command you always end it with a </> so for the above you'd end it with </body></html> That will tell it when to end.
Other things you should know to write into the file is the commands necessary to state them.
<title> The title defines the header of the website or name of document</title>
<body>can be used like the paragraph</body>
<p> the p will state a paragraph </p>
<br /> the br will represent a line break (enter button in short words)
<pre></pre>- this will show a preformatted format
and to end the basics
I'll list different types of headings
h1-h6 are different fonts of headers
so
<h1></h1>= Largest
<h6></h6>=Smallest
The <head></head> element will define the top of the website so the header will be where you input the name of the doc.(what you see on url tab) and the layout of the header.
Edit: This is how the setup would look like
<html>
<head>
<title>Document name goes here</title>
</head>
<body>
Text that's shown in website goes here
</body>
</html>
I'll make another guide later for more on html, PM or visitor message or post if you need any help or more detail. :)