Blocks

Blocks

All the HTML elements can be categorized into two categories (a) Block Level Elements (b)Inline Elements. Block Elements Block elements appear on the screen as if they have a line break before and…
Backgrounds

Backgrounds

By default, your webpage background is white in color. You may not like it, but no worries. HTML provides you following two good ways to decorate your webpage background. HTML…
Colors

Colors

Colors are very important to give a good look and feel to your website. You can specify colors on page level using <body> tag or you can set colors for…
HTML – Lists

HTML – Lists

HTML offers web authors three ways for specifying lists of information. All lists must contain one or more list elements. Lists may contain − ·        <ul> − An unordered list. This will…
Style Sheet

Style Sheet

Cascading Style Sheets (CSS) describe how documents are presented on screens, in print, or perhaps how they are pronounced. W3C has actively promoted the use of style sheets on the…
CSS CURSORS

CSS CURSORS

Although the cursors will not have the customized look in other browsers it usually doesn't ruin anything. These browsers will simply show the normal arrow-cursor which would be same case…
Features of CSS

Features of CSS

Features  The latest version of Cascade Style Sheets, CSS 3, was developed to make Web design easier but it became a hot topic for a while because not all browsers…
Audio

Audio

Android has a built in microphone through which you can capture audio and store it , or play it in your phone. There are many ways to do that but…
Drag and Drop

Drag and Drop

Android drag/drop framework allows your users to move data from one View to another View in the current layout using a graphical drag and drop gesture. As of API 11 drag and…
What are Semantic Elements?

What are Semantic Elements?

A semantic element clearly describes its meaning to both the browser and the developer. Examples of non-semantic elements: <div> and <span> - Tells nothing about its content. Examples of semantic elements: <form>, <table>, and <article> - Clearly defines its content. Semantic Elements…