Office Address

41/D, West Brahmondi, Narsingdi

Phone Number

+880-1975374887

Email Address

[email protected]

Free HTML5 tools for developer

Since start of HTML5 it took the web to next level.Now most of the web development is implemented using HTML5 and css3 . Today i listed some HTML5 tools to reduce the development time. 1) Modernizr.com Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user’s browser.It will add class on […]

Read More

Detect HTML5 Geolocation Support

Geolocation is the art of figuring out where you are in the world and (optionally) sharing that information with people you trust. To check if the user browser support Geolocation you can use any of the following techniques: Technique #1: By using a JavaScript junction. [code lang=”js”] function supports_geolocation() { return !!navigator.geolocation; } [/code] Technique […]

Read More

HTML5 Audio

Previously we uses flash to play audio files.Now HTML5 support a new element called Audio.It will give web developer much controls to do funny stuffs with audio.No need to use flash any more! [php] <audio controls> <source src="horse.ogg" type="audio/ogg"> <source src="horse.mp3" type="audio/mpeg"> <!– add your fallback solution here. Like you can add flash here for […]

Read More

Journal – Free wordpress Bootstrap theme

I have lunched a new free WordPress Bootstrap theme. This theme is packed with features : Using Bootstrap framework Theme option panel Video support Widget ready Language support And best of all free to use Here is the live theme demo Download from Github https://github.com/maidulcu/JOURNAL.git

Read More

HTML5 Input Type Month

HTML5 introduce new Input Type Month.This month type allows users to select a month and year.It will just select the month and year with no time zone. You can call this Input Type Month using input type="month" on your input field. Currently the latest version of Chrome, Opera and Safari browser supporting this.     […]

Read More
  • September 25, 2012
  • HTML5

HTML5 Input Type datetime

HTML5 Input Type datetime is just like Input Type Date except it will allow visitor to select a date and time (with time zone). You can call this datetime picker using input type="datetime" on your input field.This will certainly reduce your development time so need nasty Javascript code.

Read More
  • September 23, 2012
  • HTML5

HTML5 Input Type Email

A typical email address structure is [email protected] As you can never trust your website user so you have to check the email id when user submit the form. To solve this, HTML5 came with a news input type email. The syntax is as basic as a text input you just have to use type="email". Some […]

Read More
  • 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
  • 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