Sep 25, 2013

Learn HTML online for free - Part 03 "Basic terminology"

7:00 PM

READ MORE



To learn more HTML, we should learn how to talk about HTML. Already you have seen we use <>s a lot.
  1. Things inside <>s are called tags.
  2. Tags nearly always come in pairs: an opening tag and a closing tag.
  3. Example of opening tag: <html>
  4. Example of closing tag: </html>
You can think of tags as being like parentheses: whenever you open one, you should close it. Tags also nest, so you should close them in the right order: the most recently opened tag should be the first one closed, like in the example below.

<first tag><second tag>Some text!</second tag></first tag>
 
The last exercise taught us how to set up our HTML file. Everything we do now will go between <html> and </html>.

Practice makes perfect! One more time:

Instructions:
  1. Put in the <!DOCTYPE HTML> tag.
  2. Put in the <html> opening and closing tags.
  3. Between the <html> tags, write whatever you like.
  4. Save and open it on your browser. 

Written by

Learn Programming Language, Web Development and more Online without any cost!!!

0 comments:

Post a Comment

 

© 2013 Technology Update News!. All rights resevered. Designed by BDpython

Back To Top