So you want to code?

well you’re in the right place!!!

Well you need to get a script editor up like code visual studio (the setting up is based on this).It is free!!!

Get the software up (download if you have not) then click “plain text” then click “HTML”

To let the script actually start you have to tipe <HTML> to end it when you want to, tipe </HTML>

To right some think down you need to tipe <p> to start and </p> to end you put that, put stuff in between those to show stuff like hello.

<p>hello</p>

It will look like this,

hello

But that’s looks boring, so let’s make it bold by putting <b> and at the end put </b>

<p><b>hello</b></p>

it will look like this,

hello

Well if there is bold there must be italic you must be thinking, whell there is you will need to put <I> at the start and you gest it  </I>

<I>hello</I>

It will look like this,

hello

And you are probely thinking what about under lined well you gest it it is <u> and </u>,

like <u>hello</u>

hello

There is one more thing I’m going to tech you how to do the title and subheading and subsubheding and so on you need to put <h1> or <h2> and so on and put the / to end it.

<h1/>hello<h1/>

it will look like this

hello

You can stack them as well

side nots:

If you do not put <HTML> and </HTML> it will not work atoll!!!

If you do not put the / tag it will not work atoll!!!