<!doctype html> <html> <head> <title>Jquery Fontselect Example</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <link rel="stylesheet" type="text/css" href="styles/fontselect-default.css" /> <script src="jquery.fontselect.js"></script> <script> $(function(){ $('#font').fontselect(); }); </script> </head> <body> <input id="font" type="text" /> </body> </html>