Basic HTML
Want to learn how HTML works? It may seem a bit difficult at first, but once you learn the basics of HTML, you will likely get the hang of more complicated types of coding, like CSS, PHP, and the like.
Easy
These are the most simple types of HTML that is perfect if you're just getting into HTML. These codes allow your text to have cool "effects."
To separate your content instead of having it put in one chunk of text, you can add <br> at the end of a line, like this:
your text here<br>
If you want your text to be bolded, you use this code:
<b>your text here</b>
If you want to define a paragraph, you can use this code:
<p>your text here</p>
If you want your text to be italicized, you use this code:
<i>your text here</i>
If you want your text to be underlined, you use this code:
<u>your text here</u>
If you want your text to be crossed out, you use this code:
<strike>your text here</strike>
Intermediate
These are some of the more complicated types of HTML if you start to get better at coding. These codes allow you to code images and create links for your site.
If you want to create a link, use this code:
<a href="http://www.theforestmanor.com/site/basichtml">link</a>
If you want to code an image like this:
, you use this code:
<img src="http://archives.bulbagarden.net/w/upload/3/35/Ani001MS.png">
If you want to create a title like the one we use, you use this code:
<title>your title here</title>
If you want your text to be different colored, you use this code:
<font color="#33ccff">your text here</font>
If you want your text to have a different font, you use this code:
<font face="georgia">your text here</font>
So that's the most basic types of HTML. If you would like to get into more complicated types of HTML, and even more types of coding, you can visit other sites that provide great information like W3Schools and Tizag.