-Annie-

JS in browser

May 23rd, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Title</title>
  6. </head>
  7. <body>
  8.     <h1>JS in HTML page</h1>
  9.     <script>
  10.         for (let i = 1; i <= 10; i++) {
  11.             document.write(`<p>${i}</p>`);
  12.         }
  13.     </script>
  14. </body>
  15. </html>
Add Comment
Please, Sign In to add comment