Add image to page header
Description
The following code shows how to add image to page header.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script type="text/javascript"
src="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.css">
</head><!-- ww w. j av a 2s .c om-->
<body>
<div data-role="page" data-theme="c">
<div data-role="header" data-position="inline" data-theme="e">
<img src="http://placehold.it/20x20" height="25px">
<h1>test</h1>
</div>
</div>
</body>
</html>