Add Google Code Prettify 

<!DOCTYPE html> <html> <head> <title>My Web Page</title> <link rel="stylesheet" href="http://cdn.jsdelivr.net/gh/google/code-prettify@master/src/prettify.css"> <script src="http://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script> </head> <body> <pre class="prettyprint"> public class HelloWorld{ public static void main(String args[]){ System.out.println("Hello world"); } } </pre> </body> </html> Google Code Prettify is an open-source JavaScript library that provides a simple way to add syntax highlighting to code blocks on web pages. The … Continue reading Add Google Code Prettify