0

I'm looking at creating a tablet application (iPad, Nexus, Surface...). I've heard it's possible to create it using HTML5 canvas. I was wondering if it was limited to canvas, if div/input/table can also be used.

Can a normal HTML page be used as an application for the Apple, Microsoft, Android store?

Laurent Couvidou
  • 9,171
  • 2
  • 41
  • 57
the_lotus
  • 237
  • 1
  • 7

2 Answers2

2

After looking around and with the comments, I learned that I need something to put a native front end over the html applications. There are a lot of different platform that support a lot of different systems (ex: Cordova).

the_lotus
  • 237
  • 1
  • 7
1

For the Android Store (Google Play), you will need a small portion of Java code.

To display the HTML in your application, you can use a WebView: http://developer.android.com/reference/android/webkit/WebView.html

Allan Hasegawa
  • 659
  • 4
  • 9