I recently worked on a project to build a website with Bootstrap & jQuery. After that I used almost the same webpages to create a mobile app in iOS and Android with "Cordova". What is Cordova ? Cordova is a popular Apache Foundation open source project, providing a set of device APIs to allow mobile application developers to access native device functions—such as the camera or the accelerometer—from JavaScript. It allows you to use standard web technologies such as HTML5, CSS3, and JavaScript for cross-platform development, avoiding each mobile platforms' native development language. Getting start with Cordova The Command-Line Interface in Mac OS Setting up Download and install Node.js Download and install a git client Install Cordova Cli(on OS X and Linux) : $ sudo npm install -g cordova Create the App $ cordova create foldername com.example.hello AppName {AppName} is the same as the certificate name of App {foldername} is the same as the direct...