I want to make the user to wait for a certain amount of time (10 seconds). I know in JSP or in servlets we use the META tag
Did you try with threads. Using
Thread.sleep(10000);
you can acheive it easily. You can get more information here