Articles
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
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 …
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;} …
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 »
Great Website for Tutorials
Great Website for Tutorials http://www.lynda.com/
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 …
Browser Hack
Use * for Internet Explorer CSS properties (width:100px; *width:95px;) Use # for Google Chrome CSS Properties (width:100px; #width:95px;)
