Advertisement
Guest User

HTML Code

a guest
Oct 23rd, 2016
1,039
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.08 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>Hello World!</title>
  4.         <style type="text/css">
  5.             body {
  6.                 background-color: darkgrey;
  7.             }
  8.             .test {
  9.                 font-family: Noto Mono;
  10.             }
  11.             .afterscript {
  12.                 font-family: Noto Mono;
  13.             }
  14.             .bunnystuf {
  15.                 font-family: Noto Mono;
  16.             }
  17.         </style>
  18.         <script src=/node/es5-shim.js></script>
  19.     </head>
  20.     <body>
  21.         <div class="test">
  22.             <h1>Hello World!</h1>
  23.             There is a hello world HTML file with hidden CSS style in code. You can view it with a developer tools in your browser.
  24.             <br>P.S. And some JS code inside in script tag
  25.         </div>
  26.         <script>
  27.             alert("Hello!")
  28.         </script>
  29.         <div class="afterscript">
  30.             P.P.S. And one string after script tag
  31.         </div>
  32.         <script src="bunny.js"></script>
  33.         <div class="bunnystuf">
  34.             P.P.P.S. Bunnies included in bunny.js
  35.         </div>
  36.     </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement