Style font for page content
Description
The following code shows how to style font for page content.
Example
<!-- www . ja v a2 s.com-->
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.6.3.js'></script>
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"
type="text/javascript"></script>
<script
src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"
type="text/javascript"></script>
<style type='text/css'>
body .ui-body-c {
font-family: "Lucida Grande";
font-size: 300%;
}
</style>
</head>
<body>
<div data-role="page" id="start">
<div data-role="content">
<p>Hallo</p>
</div>
</div>
</body>
</html>