something to write here

Writing First Mobile Application-Firefox OS

First Mobile application
First Application
In our Previous blog post we saw about the basic requirement for developing Firefox Mobile Application. As you can know this is very setup when you compare to any other application development.  Similar developing mobile application for Firefox OS is that easy. You need not be an expert to develop mobile application. But you need to have some basic knowledge about web technologies if you are not using Mozilla Appmaker.




  • HTML
  • CSS
  • Javascript

There are lot of places where you can learn about these technologies.  I would like to list some of them.
The very first application I would like to show about is Hello World!! which is most widely shown in any programming language examples and also in application. First part of this I would like to show it in the browser and then how the same thing can be ported to Firefox OS simulator.

The very first thing is to write the application code in any text editor. below is the source code for the hello world application. After you finish writing your code please save it with .html . The good practice is to save it as index.html. Even in Application development the manifest will first search for index.html to run
<html>  
<head>
<title>Hello World App</title>
</head>
<body>
<h1> Hello World Developers </h1>
</body>


</html>


When you view the saved page in the browser you can see like below.
Hello world developers
Browser View of Hello world
We have reached first few steps in our application development process. Yet there are simple steps to be followed to develop application for our Firefox OS based Phones. We can see how to convert this page to our mobile phone app. Stay Tuned.