You can air sdk to compile an AIR application to show an HTML Page. Try the steps given below:
1. Create an HTML File with the following code and saved it as HelloWorld.html:
<html>
<head>
<title>Hello World</title>
</head>
<body>
<b>Hello World</b>
</body>
</html>
2. Created an xml file with the following code and save it as app.xml
<application xmlns=”http://ns.adobe.com/air/application/1.0″>
<id>test.html.HelloWorld</id>
<version>0.1</version>
<filename>HelloWorld</filename>
<initialWindow>
<content>HelloWorld.html</content>
<visible>true</visible>
<width>400</width>
<height>200</height>
</initialWindow>
</application>
3. Save these two files in a new directory. Here I have stored in D:\HelloWorld .
4. Then go to your flex folder using command prompt as shown in the figure given below and type the command:

5. You will get an output as the figure shown below:

Note: You should note the version of adl installed in your PC with the version given in your xml file.
That’s it. You have done!!!
adl, Adobe Air, AIR, html, xml