help me code convert to Jqury Mobile

help me code convert to Jqury Mobile

Hello
How is it possible to convert this code to Jquery Mobile

  1. <!DOCTYPE html>
  2. <html>
  3.   
  4.     <title>jQuery Mobile Slider</title>
  5.     <head>
  6.     <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css"/>
  7.     <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
  8.     <script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
  9.  
  10. </head>
  11. <script>
  12.     $(document).ready(function(){
  13.     $( "#slider-fill" ).slider({
  14.       range: "max",
  15.       min: 10,
  16.       max: 20,
  17.       value: 1,
  18.       slide: function( event, ui ) {
  19.         $( "#text" ).css( { fontSize: ui.value} );
  20.       }
  21.     });
  22. });
  23. </script>
  24. </head>
  25. <body>
  26. <div data-role="page">
  27.     <div input type="range" name="slider-fill" id="slider-fill" value="10" min="10" max="20" data-highlight="true" /></div>
  28.  
  29. <font size="2" id="text">Text </font>
  30. </div>
  31. </body>
  32. </html>