Saturday, 22 October 2016

Project management

Doing a small project is easy and can be done with minimal effort in less.time. But coming to heavy projects systematic procedure needs to be followed followed or else it will end up in confusion and complexity.
The following documents are must for a project greater than 30k
1. Wireframes
2. Complete Requirement 
3. Features and functionality sign-off
4. SOW
5  UTP
6. Maintenance

Found this pdf very useful.

ProjectManagement.pdf

Saturday, 15 October 2016

CSS Font-Size: em vs. px vs. pt vs. percent

Here is the difference between em, px, pt, percent


  1. “Ems” (em): The “em” is a scalable unit that is used in web document media. An em is equal to the current font-size, for instance, if the font-size of the document is 12pt, 1em is equal to 12pt. Ems are scalable in nature, so 2em would equal 24pt, .5em would equal 6pt, etc. Ems are becoming increasingly popular in web documents due to scalability and their mobile-device-friendly nature.
  2. Pixels (px): Pixels are fixed-size units that are used in screen media (i.e. to be read on the computer screen). One pixel is equal to one dot on the computer screen (the smallest division of your screen’s resolution). Many web designers use pixel units in web documents in order to produce a pixel-perfect representation of their site as it is rendered in the browser. One problem with the pixel unit is that it does not scale upward for visually-impaired readers or downward to fit mobile devices.
  3. Points (pt): Points are traditionally used in print media (anything that is to be printed on paper, etc.). One point is equal to 1/72 of an inch. Points are much like pixels, in that they are fixed-size units and cannot scale in size.
  4. Percent (%): The percent unit is much like the “em” unit, save for a few fundamental differences. First and foremost, the current font-size is equal to 100% (i.e. 12pt = 100%). While using the percent unit, your text remains fully scalable for mobile devices and for accessibility.