header bar

header bar

Hello,

In the header bar of my home page, I must have a button (cancel) and next to it a label (Home).

I tried to do it, but they are displayed in 2 lines  ( CANCEL in a line and HOME in another )


my code :

  1. <div class="ui-bar ui-bar-b">
  2. <input type="button" value="Cancel" onclick="window.close()"/> 
  3. <h1> Acceuil</h1>
  4. </div>

and in the Header of the page I put this :

  1. <head>
  2. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

  3.     <title>My Page</title>
  4.     <meta name="viewport" content="width=device-width, initial-scale=1">
  5.   
  6.     <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" /> 
  7.     <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.1.min.js"></script>
  8.     <script type="text/javascript" src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
  9. </head>