Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.57 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title></title>
  5. </head>
  6.  
  7. <body id="mehdi"  class ="bodys adalzn alzdnlanz azdnl ndd"  name="bod">
  8.     <h1>hallo</h1>
  9.     <script type="text/javascript">
  10.  
  11.         var x = document.createElement("h2");
  12.         console.log(x);
  13.         x.setAttribute("class","test");
  14.         console.log(x);
  15.         x.id='firstH2';    
  16.         console.log(x);
  17.         x.innerHTML = "How are you ";
  18.         console.log(x);
  19.         var father = document.getElementById("mehdi");
  20.         father.appendChild(x);
  21.      
  22.     </script>
  23. </body>
  24.  
  25.  
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement