Advertisement
Guest User

lalal

a guest
Nov 21st, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="bg">
  3. <head>
  4. <meta charset="utf-8">
  5. <title> Uprazhenie JavaScript </title>
  6. <script>
  7. window.onload = function(){
  8. alert(Date());
  9. }
  10. </script>
  11. <script>
  12. function function1(){
  13. document.getElementById("styleMe").style.color="green";
  14. document.getElementById("styleMe").style.background="blue";
  15. document.getElementById("styleMe").style.fontWeight = "900";
  16. document.getElementById("styleMe").style.fontStyle = "italic";
  17. }
  18. </script>
  19. </head>
  20. <body>
  21. <div id="styleMe">Примерен текст – JavaScript пример.</div>
  22. <button type="button" onclick="function1()" style="margin-bottom: 15px;">Style me!</button>
  23. <p id="show"></p>
  24. <button type="button"onclick='document.getElementById("show").innerHTML = "Radostina Kondakova"' style="marginbottom:15px;">Show me!</button>
  25. <button type="button"onclick='document.getElementById("show").innerHTML = " "' style="marginbottom:15px;">Hide me!</button>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement