Skip to main content

Posts

Showing posts from March, 2012

Mobile Application Development Frameworks

PhoneGap (Apache Callback):- PhoneGap is an open-source mobile development framework developed by Nitobi Software. Now acquired by Adobe. Appcelerator Titanium  :- Appcelerator Titanium   is a platform for developing mobile, tablet and desktop applications using web technologies. Rhomobile Development:- Motorola’s Rhomobile offers a very impressive suite of polished tools -- Rhodes framework, RhoSync server, RhoHub Development as a Service (DaaS), and RhoGallery app store -- to quickly build and deploy powerful native mobile applications for all smartphones.                                      PhoneGap                                       Appcelerator Titanium      PhoneGap  :- PhoneGap is an open source development tool for building fast, easy, cross-platform mobile apps with HTML5 and JavaScript. PhoneGap has been downloaded more than 600,000 times to date and thousands of applications built using PhoneGap are available in mobile app st

Sample HTML5 Structure

HTML5 is the thing that developers are starting to take a look more and more. More and more browsers are getting compatible with it and with the iPhone choosing this as it’s main multimedia language I have no doubt that this will be demanded in great quantities. In this post I will explain how to create a sample HTML5 structure for your web site. Can develop apps for Android, BB, Windows, IPhone. <!DOCTYPE HTML> <html lang="en"> <head> <meta charset=utf-8> <title>Sample HTML5 Structure</title> <style> header, nav, article, footer, address, section { display: block; } #container { width:900px; margin:auto; background-color:white; } header { background-color:#666; } nav li { display:inline; padding-right:1em; } nav a { color:white; text-decoration:none; } nav a:hover { text-decoration:overline; } h1, h2 { margin:0px; font-size:1.5em; } h2 { font-size:1em; } footer { background-color:#999; text-align:center; } </style>