HTML
HTML stands for HyperText Markup Language.
HTML is the language used to create and display web pages on the internet. It uses many tags and attributes to decode the different segments of a web
page. A document in HTML begins with <HTML><HEAD>(the content of the
document is placed here)</HEAD><BODY> and ends with </BODY></HTML>. The /
always precedes the command of a tag that is being closed or ended. The code
or language uses the <BODY> and </BODY> tags to encompass the entirety of
page code. The newest form of HTML being used is called XML. HTML is not
case sensitive. Here is an example of some of the other tags used in HTML.
<p> for creating paragraphs
<br> for creating breaks or gaps in the page
<I> for making text italicized
<b> for making text bold
<href="http://link"> for hyperlinking text
and there are many more...
Links for more information: