Guest User

Untitled

a guest
Nov 23rd, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <style>
  6. #foo {
  7. color: green;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12. <h1 id="foo">Lorem ipsum</h1>
  13. <script>
  14. console.log(document.getElementById("foo").style.color);
  15. </script>
  16. </body>
  17. </html>
Add Comment
Please, Sign In to add comment