I want to write a java program that asks the user for information like name, age , etc. Then take that information and make an HTML document on my computer with the information in it. I don't know where to start with making it a web page. Here is my code so far:
import javax.swing.JOptionPane;
public class WritesHTML{
public static void main(String[] args){
String firstName = JOptionPane.showInputDialog("Enter first name:");
String lastName = JOptionPane.showInputDialog("Enter last name:");
String age = JOptionPane.showInputDialog("Enter age:");
String occupation = JOptionPane.showInputDialog("occupation:");
int numAge = Integer.parseInt(age);
}
}