close(X)

Showing posts related to Html

Top 10 jQuery Tips and Tricks

10. Always Use the Latest Version of jQuery You can even include jQuery directly from Google’s servers, which provide free CDN hosting for a number of JavaScript libraries. 9. Detect browser With jQuery Although it is better to use CSS … Continue reading

November 1st, 2011

Top 10 CSS frame work

1. 960 Grid System Excellent CSS Framework that worth a look. The download includes templates for Fireworks, Photoshops, Inkscape and etc. so that you can start designing your web template immediately. The PSD file that comes with guides ready save … Continue reading

October 12th, 2011

Top 10 PHP framework

10. QPHP Quick PHP Framework is an event-driven(EDP), component-based web framework similar as architecture to ASP.NET. It is a tool, which will help you to create any PHP-based website in an easy, fast, reliable, safe and well-organized way. It comes … Continue reading

September 13th, 2011

Top 10 HTML5 Tip and Tricks

10. New Doctype Switch to the new HTML5 doctype it’s used for current, and older browsers that require a specified doctype. Browsers that do not understand this doctype will simply render the contained markup in standards mode. So, without worry, … Continue reading

August 29th, 2011

How to Make CSS Circle

A generic, cross-browser method to round the edges of a square into a circle. #circle { background-color:blue; width: 250px; height: 250px; border-radius:50%; -moz-border-radius:50%; -webkit-border-radius:125px; overflow:hidden; position:relative; } Use below code for IE.Add this code at the bottom of your page … Continue reading

August 10th, 2011

Top 10 HTML Questions

#1 How do I add midi music to my web page This can be done quite with the below tag. <bgsound src=”music.mid” loop=”1″> This tag will play the music.mid once. If you wanted this song to continue without stopping, you … Continue reading

June 15th, 2011

HTML5 Header Element

This article in the HTML5 series covers the explanation and usage of the element. Header element as the page header The first place that I use the HTML5 <header> element is for the page header which might contain a  logo, … Continue reading

April 8th, 2011

HTML5 Article Element

This article in the HTML5 series covers the explanation and usage of the element. The Spec The article element represents a component of a page that consists of a self-contained composition in a document, page, application, or site and that … Continue reading

April 8th, 2011

HTML5 Nav Element

Nav Element Specification The HTML5 specification defines the <nav> element as: The nav element represents a section of a page that links to other pages or to parts within the page: a section with navigation links. Not all groups of links on a … Continue reading

April 8th, 2011

Top 10 HTML Interview Questions and Answers

What is HTML? HTML, or HyperText Markup Language, is a Universal language which allows an individual using special code to create web pages to be viewed on the Internet. How do I create frames? What is a frameset? Frames allow … Continue reading

February 17th, 2011
Page 1 of 212