Thursday, June 30, 2011

Gonna get into Html5 soon

Well I'm gonna get into html5 coding and this will be my first html5 iphone webapp and it's a game I planned and now here's what I got for the main Html5


here's what I've got for now


<!DOCTYPE html>
<html manifest="Game.manifest">
<head>

    <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
    <meta name="apple-mobile-web-app-capable" content="yes" />

    <meta name="apple-mobile-web-app-status-bar-style" content="black" />
    <link rel="apple-touch-icon-precomposed" href="Images/Icon.png"/>

    <link rel="apple-touch-startup-image" href="Images/Startup.png" />
    <link rel="stylesheet" href="Parts/Game.css" type="text/css" media="screen, mobile" title="main" charset="utf-8">

    <title>Deal or No Deal Superstar</title>
</head>
<body>
   <!-- Put your Markup Here -->
   <script type="text/javascript" src="Game.js"></script>
 
</body>
</html>