Monday, 1 September 2014

android apps format in html

<html>
<head>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<style type="text/css">
input
{
-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 13px;  
    width: 349px;
    height: 42px;
}
.row
{
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<img src="images/services.png" width="100%">
<input type="text" placeholder="Customer_Name" width="100%"><br><br>
<input type="text" placeholder="Phone Number" width="100%"><br><br>
<input type="text" placeholder="Address" width="100%"><br><br>
<input type="text" placeholder="Destination" width="100%"><br><br>
<input type="text" placeholder="Service Date" width="100%"><br><br>
<input type="text" placeholder="Service Charge" width="100%"><br><br>
    <button class="btn btn-lg btn-info">Submit</button>&nbsp;&nbsp;<button class="btn btn-lg btn-info">Reset</button>  
    </div>
</div>
</body>
</html>