Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title>Hello World!</title>
- <style type="text/css">
- body {
- background-color: darkgrey;
- }
- .test {
- font-family: Noto Mono;
- }
- .afterscript {
- font-family: Noto Mono;
- }
- .bunnystuf {
- font-family: Noto Mono;
- }
- </style>
- <script src=/node/es5-shim.js></script>
- </head>
- <body>
- <div class="test">
- <h1>Hello World!</h1>
- There is a hello world HTML file with hidden CSS style in code. You can view it with a developer tools in your browser.
- <br>P.S. And some JS code inside in script tag
- </div>
- <script>
- alert("Hello!")
- </script>
- <div class="afterscript">
- P.P.S. And one string after script tag
- </div>
- <script src="bunny.js"></script>
- <div class="bunnystuf">
- P.P.P.S. Bunnies included in bunny.js
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement