Mutant,
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
.my{
font-size: 4em;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(function(){
$.getJSON('http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=Java', function(data){
$('<div/>', {
'class': 'my',
html: data["responseData"]["cursor"]["estimatedResultCount"]
}).appendTo('body');
});
});
</script>
</head>
<body>
</body>
</html>