Rounded Corners in CSS

This below content gives you an idea how to make cross-browser compatible rounded corners with CSS. Example of Rounded Corners: <!DOCTYPE html> <html> <head> <style> .roundCorner{ background: #C2C2C2; border-radius: 25px; border: 3px solid #C2C2C2; padding: 15px; width: 150px; height: 150px; } </style> </head> <body> <div class=”roundCorner”>Rounded corner div!</div> </body> </html>

jQuery tips and tricks

In this article you will learn about few jQuery tips and tricks of interesting. Until you practice, you will not be able to be master of jQuery. jQuery tips: To check if checkbox is checked: if ($(“#checkID”).is(‘:checked’)) { … } or if ($(‘#checkID’).attr(‘checked’)) { … } Check whether an element exists or not: if ($(“#myDIV”).length) […]

Meta Tags in HTML

This is meta information about your html document. It is not visible to the browser. For SEO purpose meta tags are used and written between head tags. Meta Tags: <head> <meta name=”keywords” content=”Html, Web design, Meta tags”> <meta name=”description” content=”This is html meta tags description”> </head> Besides this lots of meta name are available.

HTML 4

HTML is basically a language on the internet for website. It basically consists of multiple pages where each pages written in .html extension. Currently the latest version is HTML5 where new elements are added. It is the abbreviation of Hyper text markup language that means you can embed links inside the text. When click on […]