Html is a language used to make words on your website. Html stands for Hypertext Markup Language. Html uses tags to control where to put the writing. A tag can make the text bolder or make a title. Tags are used in many ways. A basic html document always starts with <html> and ends with </html>. The slash is there to indicate that it's the closing tag so the program won't confuse it with something else.
Tag List:
Here is an example of a small paragraph and title in html writing:
<html> <head> <b> Ice Cream </b> </head> <body> <h3> flavors </h3> <p> There are many different yummy flavors of ice cream, my favourite is cherry.
<p> Oh how i love icecream! </p>Here is how it would look on the document:
Ice CreamThere are many different yummy flavors of ice cream, my favourite is cherry.
Oh how i love icecream!