Monday 13 June 2011

HTML

Welcome to the best tutorial you will ever find on HTML J. Html, unlike the average programming language, uses tags. Tags are like your code pieces except in the greater than and less than signs. So if you were going to put a piece of text in your site it would probably be written “<p>Your text here</p>”. Almost all sites are written in HTML and you probably have no programs on your computer written in HTML. HTML is very popular on the internet because that’s the basic sites coding.
              There are many different tags for different uses. To import javascript into your site you would type “<script type="text/javascript">” and then to end the javascript you would type “</scipt>”. Whenever you want to end you tag you will usually use </tag name here>. Another tag is the <p> tag which stands for paragraph and you would use it if you were going to write some text. A useful header tag are the <h> tags. To use an <h> tag you would type “<h1>”, “<h2>”, “<h3>”, “<h4>”, “<h5>” or “<h6>”. The <h> tags all have different sizes <h1> being the largest and <h6> being the smallest.
              There are also tags for changing how your font looks.  You can use <b> for making something look bold. The b in <b> stands for bold. You can you <i> standing for italic. And you can even use <u> which stands for underline. All the tags are written in the same way and an example of the bold tag is ”<p><b>Text here</b></p>” .  Those are the different formatting tags for html code.

1 comment: