Office Address

41/D, West Brahmondi, Narsingdi

Phone Number

+880-1975374887

Email Address

[email protected]

  • September 21, 2012
  • HTML5

HTML5 Input Type Date

HTML5 Input Type Date will allows the user to select a date. Previously this is done by Javascript date picker. To make you life easier you can now call this date picker by simply using this type="date" on your input field. May be looks like this way : [php]<input type="date" name="birthday" />[/php] Currently the latest […]

Read More
  • September 19, 2012
  • HTML5

HTML5 Input Type Color

You can get color input box in html5 with this attribute type="color". With this new html5 Input Type Color, you no longer need a complex Javascript color picker. Not all major browsers support all the new input types. Only latest version of Chrome and Opera support this. If the browser are not supported, they will […]

Read More

What is jQuery Mobile

jQuery Mobile is a HTML5 based user interface system for all popular mobile device platforms.It built on the rock-solid jQuery and jQuery UI foundation. jQuery mobile framework takes the “write less, do more” mantra to the next level: Instead of writing unique apps for each mobile device or OS, the jQuery mobile framework allows you […]

Read More
  • September 17, 2012
  • HTML5

HTML5 Autocomplete Attribute

When HTML5 autocomplete is on, the browser will automatically complete values that the user has entered before. This HTML5 autocomplete attribute works with the following input types: text, search, url, tel, email, password, datepickers, range, and color. Also you can turn off this autocomplete attribute by using this attribute autocomplete="off" [php] <form action="/" autocomplete="on"> First […]

Read More
  • September 16, 2012
  • SEO

Best SEO Plugins For WordPress 2012

On my previous article for optimizing WordPress for seo i showed how some basic change on wordpress and installing some plugin can improve your website seo. Now i recommend to use WordPress SEO by Yoast along with those steps. This plugin have the following features : Page Analysis Technical WordPress Search Engine Optimization XML Sitemaps […]

Read More
  • September 15, 2012
  • HTML5

HTML5 input autofocus Attribute

HTML5 allows us input autofocus attribute on elements when page loads. This is accomplished by using the autofocus attribute. Using this autofocus attribute the INPUT, TEXTAREA, or BUTTON element will be automatically selected on page load. The best part is no JavaScript is needed. This autofocus attribute can be set using this 3 ways : […]

Read More

Easy Press : Free WordPress Theme

Easy Press is a free WordPress theme.You can easily use this theme for your WordPress blog or for your news website.I make this theme using my BLANK RESPONSIVE HTML5 WORDPRESS THEME. It came with following features: [list style=”check”] HTML5 and CSS3 Theme Option Panel Custom Widgets Dynamic Footer widget area Have full control on Home […]

Read More

Add visitor browser name in the body class function

You can easily detect browser using this function and add visitor browser name in the body class function . Put this on your theme functions.php [php] add_filter(‘body_class’,’myfunction_browser_body_class’); function myfunction_browser_body_class($classes) { global $is_lynx, $is_gecko, $is_IE, $is_opera, $is_NS4, $is_safari, $is_chrome, $is_iphone; if($is_lynx) $classes[] = ‘lynx’; elseif($is_gecko) $classes[] = ‘gecko’; elseif($is_opera) $classes[] = ‘opera’; elseif($is_NS4) $classes[] = ‘ns4’; […]

Read More

5 Best invoicing tools for freelancers to make your life easier

For freelance business owner whatever its a small or medium sized business they needs to use an invoicing tool. Choosing a right invoicing tool is very important to grow your business.This will show your professionalism to your client and will bring more trust on you skills. Today i will share some best invoicing tools for […]

Read More

Blank Responsive HTML5 WordPress theme

As the modern browsers are starting to support some parts of HTML5, CSS3 and also the user of iphone and other mobile device are growing rapidly. So HTML5 responsive web design is getting very popular. Today i am very much excited to present Blank Responsive HTML5 WordPress theme which will reduce your theme development time. […]

Read More