![]() |
| First Application |
- 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.
| Browser View of Hello world |
