1<!DOCTYPE html>
2<html>
3 <body>
4 <script>
5 setTimeout(myURL, 5000);
6 function myURL(){
7 window.open('http://qries.com');
8 }
9 </script>
10 <p>Web page loads after 5 seconds.</p>
11 </body>
12</html>