May 10, 2013

What is HTML?

Leave a Comment
HTML stands for Hyper Text Markup Language.
HTML (Hypertext Markup Language) is not a programming language, but rather a markup language or codes inserted in a file intended for display on a World Wide Web browser page.

HTML is not case sensitive and can be easily updated after the file is created. HTML is not difficult to learn and there are a lot of resources and information available. You can take classes to learn HTML or just read through a simple tutorial.

Some of the most popular HTML editors, such as FrontPage or Dreamweaver will let you create pages more or less as you write documents in Word or whatever text editor you're using.
Read More...

What is difference between Class and ID in CSS

Leave a Comment
Difference between Class and id Selectors?

ID can be use only one time on each element, Each page can have only one element with that ID. Classes can be use on multiple elements, You can use multiple classes on the same element.

The # means that it matches the id of an element. The . signifies the class name, for example:

#myRedText {color: red;}
.blueText {color: blue;}
Read More...