Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7.     <title>JS Demo</title>
  8. </head>
  9. <body>
  10.     <script>
  11.         // Pop-Up Meldung mit "Hello World!"
  12.         var x = "Hallo World! aus VAR"
  13.         var y = "mit Zusatztext"
  14.         // alert(x+" "+y);
  15.         document.write(x+" "+y);
  16.         console.log(x+" "+y);
  17.        
  18.        
  19.        
  20.     </script>
  21.  
  22.     <h1>Unsere vierhunderdtausendeinundachzigste Seite</h1>
  23.  
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement