Advertisement
Guest User

index.html

a guest
Feb 21st, 2017
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.43 KB | None | 0 0
  1. <!doctype html>
  2. <html lang='en-US'>
  3.  
  4. <head>
  5.  
  6. <meta charset='utf-8'>
  7. <meta name='viewport' content='width=device-width, initial-scale=1.0'>
  8. <meta name='author' content='Amin NAIRI'>
  9. <meta name='description' content='JavaScript test'>
  10.  
  11. <title>JavaScript test</title>
  12.  
  13. </head>
  14.  
  15. <body>
  16.  
  17. <h1>JavaScript test</h1>
  18.  
  19. <script>
  20.     (function(){
  21.         var full=true;
  22.         full&&alert('Glass is full');
  23.     })();
  24. </script>
  25.  
  26. </body>
  27.  
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement