Technical Library
Getting Started with AT&T UI
The AT&T HTML5 UI Elements allow you to build mobile applications based on the HTML5 standard. It provides the basic building blocks to develop a mobile application that works in HTML5 webkit-based browsers.
Follow these steps to use the AT&T UI Elements in your projects.
Requirements
- Any HTML editor or text editor with syntax highlighting.
- Google Chrome or mobile phones with webkit browsers for testing.
- AT&T UI Elements package 1.5 MB
Contents
The zip file contains the following directories:
- js/ source code of the sdk
- images/ images required for the UI elements
- css/ cascading stylesheets required for the UI elements styling
Sample HTML5 template
Before including any of the HTML5 UI Elements, you have to add the HTML5 UI Elements dependency to your html file. Here is a template for each html page:
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <link rel="stylesheet" href="css/custom.css" /> <link rel="stylesheet" href="css/jquery.mobile-1.0a2.css" /> <script type="text/javascript" src="js/jquery-1.4.4.js"></script> <script type="text/javascript" src="js/jquery.mobile-1.0a2.js"></script> <script type="text/javascript" src="js/custom.js"></script> </head>