I need to do the following code using Java and HTML.Instruct
I need to do the following code using Java and HTML.InstructionsCreate a public class WebPageGenerator.Add a method generate that returns no value and takes in no values.Have the generate method output the following html code to a file entitled index.html: Hello World Add a main method to your WebPageGenerator class.Have the main method instantiate an WebPageGenerator object and run the generator method.Run the program and open the newly created index.html file with your favorite browser.