Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <title>Tutorial</title>
- <style>
- #header1{
- color: blue;
- }
- #header2{
- color: purple;
- }
- </style>
- <script>
- var sayHello = function(){
- document.write("Hello")
- }
- </script>
- <body>
- <h1 id="header1">My Website</h1>
- <p onclick="sayHello()">This is a sentence</p>
- <h1 id="header2">My site2</h1>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement