Advertisement
StefiIOE

lab 2.3

Feb 9th, 2020
483
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPEhtml>
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5.   <meta charset="utf-8"/>
  6.   <title>About Me</title>
  7. </head>
  8. <body>
  9. <h1>About Me</h1>
  10. <ul id="list">
  11.   <li>Name: <span id="name"></span>
  12.   <li>Index: <span id="index"></span>
  13.   <li>Hometown: <span id="hometown"></span>
  14. </ul>
  15. <input type="button" value="Change" onclick="s()">
  16. </body>
  17. </html>
  18.  
  19.  
  20. <script>
  21.   function s() {
  22.    document.body.style.fontFamily=('Arial');
  23.    document.getElementById("name").innerHTML="Stefanija Trifunovska";
  24.    document.getElementById("index").innerText="181562";
  25.    document.getElementById("hometown").innerHTML="Skopje";
  26.    document.getElementById("list").style.color="#ff0000";
  27.   }
  28. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement