Posts

Showing posts with the label HTML

Responsive Website using HTML5 and CSS3

Image
Today I came across a nice video tutorial for the same. Wanted to share... :)

Learn JQuery, HTML, CSS Python

I recently came to know about a new website where you can learn new Web Technologies like JQuery, HTML and CSS easily. They have various step by step tutorials with some exercise for everything. This makes it fun to leatn. They also give you badges once you complete something isn't it cool :) . So go ahead and check it out... http://www.codecademy.com/learn http://marcgrabanski.com/articles/jquery-essentials-slideshow Video Tutorials are available at youtube playlist:- http://www.youtube.com/playlist?list=PL3877C5434C042349 Keep learning....

Images for Disabled Users in Websites

Hi All, These days I am working on project to provide functionality for accessibility/disabled users in our application. We use many of images as well in our web pages. But problem was that how blind user will be able to identify what this image does. There are few things we tried for different kind of images:- a) Normal Images :- These are Images which has some meaning in the web pages for example Image of any famous personality, Building, Place, person anything. For these in HTML best way is to use Image tag " alt " attribute and provide some valid text for that image which describes it. Example:- <img src="images/taj.gif" alt="Tajmahal"> b)  Decorative Images  :- These are Images which has no meaning in the web pages for disabled users.They are there for making page look good for example Image of bullets, Horizontal space. For these in HTML best way is to use Image tag " alt " attribute and provide a blank value for it. This ...

How to skip focus in HTML

These days I am working on providing accessibility support for our company product. One of the requirement was to skip tabbing of unwanted links and images for the page. I used following technique:- In HTML we have an attribute called " tabindex". This attribute can be used to decide tab order for controls like buttons, textboxes, links, checkboxes etc. If we want any control not to be focused we should set this attribute value to "-1"  (minus one). I will be posting more techniques here watch out.. Happy learning....

HTMl 5 Overview

Now a days I am hearing lot of buzz regarding new HTML5 technology coming up. So thought of writing something about it in my blog as well and add some cool links to learn it. What is HTML5? HTML (Hyper Text Markup Language) came into software industry in 1991 and it made revolution in the industry. After this people started creating websites which are more interactive and attractive.HTML was one reason of internet boom that we are seeing now a days. Now there is another era coming HTML5.   " HTML 5 is a new standard being build by  WHATWG(   Web Hypertext Application Technology Working Group ). This will end third party plugin dependencies in web browser. We used to install Adobe Flash, SilverLight etc for supporting rich contents"         HTML5 = HTML + CSS + JS APIs Best Overview of HTML5 is available at w3c dev website . I like following video from google:- Which browser Support it? Safari 5 Google C...