<!DOCTYPE html>
<html>
<head>
<title>Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<link rel="stylesheet" type="text/css" href="style/style.css"/>
</head>
<body>
<div data-role="page" id="page1">
<div data-role="header">
<h1>Head</h1>
</div>
<div data-role="content">
<div data-role="fieldcontain">
<fieldset data-role="controlgroup">
<legend>Gender:</legend>
<label for="choice-1">Male</label>
<input type="radio" name="radio1" id="choice-1" value="choice-1" checked="checked"/>
<label for="choice-2">FeMale</label>
<input type="radio" name="radio1" id="choice-2" value="choice-2" />
</fieldset>
<fieldset data-role="controlgroup" data-type="horizontal">
<legend>Sports:</legend>
<label for="choice-3">Cricket</label>
<input type="radio" name="radio2" id="choice-3" value="choice-3" checked="checked"/>
<label for="choice-4">Hockey</label>
<input type="radio" name="radio2" id="choice-4" value="choice-4" />
</fieldset>
</div>
<p><a href="#page2" data-role="button" data-transition="slide" data-rel="dialog" data-inline="true">Slide page</a></p>
</div>
<div data-role="footer">
<h1>Footer</h1>
</div>
</div>
<div data-role="page" id="page2">
<div data-role="header">
<h1>Head</h1>
</div>
<div data-role="content">
<p><a href="#page1" data-role="button" data-inline="true" data-icon="back">page</a></p>
</div>
<div data-role="footer">
<h1>Footer</h1>
</div>
</div>
</body>
</html>