Information Technology News August 27, 2013

Programming Skill Assessment Test

Programming Skill Assessment Test You can assess your programming related skills here : http://www.techgig.com/ Its free and also, you can invite friends from social media. thanks  

Self Management August 4, 2013

Qualities of web project

Qualities of web project Developer should take care of : Reliability Creativity Flexibility Adaptability Efficiency Web project should be : Original, Fresh Content Target Audiuence User Friendly Navigation Simple and Professional Design Speed Search Engine Optimization Link Building Tracking Web Designer should be : Customer Oriented Usability Expert Familiar with Industry Include the Design Process …

Qualities of web project Read More »

Web Designing June 18, 2013

Pseudo Classes in CSS

Pseudo Classes in CSS Anchor Pseudo Classes a:link {color:#FF0000;}      /* unvisited link */ a:visited {color:#00FF00;}  /* visited link */ a:hover {color:#FF00FF;}  /* mouse over link */ a:active {color:#0000FF;}  /* selected link */ Other Pseudo Classes input:focus {background-color:#0000FF;}  /* background color change on focus */ p:first-letter {font-size:20px;} /* make first letter size large */ p:first-line {font-weight:bold;} …

Pseudo Classes in CSS Read More »

Cake PHP May 20, 2013

Share Text/URL on Facebook, Twitter and LinkedIn

Share Text/URL on Facebook, Twitter and LinkedIn A common and very important activity in web development. How to allow our website content to our visitors, share on their walls ? You need to keep an eye on these steps : 1- Facebook :  https://www.facebook.com/sharer/sharer.php?u=www.naveedramzan.com Title, description will be grabbed automatically from the meta and title …

Share Text/URL on Facebook, Twitter and LinkedIn Read More »

Information Technology News October 16, 2012

Great Website for Tutorials

Great Website for Tutorials http://www.lynda.com/

Self Management September 20, 2012

Major mistakes in HTML

Major mistakes in HTML Do not use Block elements inside the Inline elements <a href=””><h3>Click Me</h3></a>        In Correct <h3><a href=””>Click Me</a></h3>        Correct Do not avoid to insert ALT and TITLE tags in image and hyperlinks tags <img src=”images/logo.png”>                     In …

Major mistakes in HTML Read More »

Self Management September 16, 2012

Browser Hack

Use * for Internet Explorer CSS properties (width:100px; *width:95px;) Use # for Google Chrome CSS Properties (width:100px; #width:95px;)