Advertisement
ShadowEmbrace

zad_7

Sep 11th, 2024
395
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.70 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Document</title>
  7. </head>
  8. <body>
  9.     <h1 id="title">Title</h1>
  10.     <div id="img-div"></div>
  11.     <button onclick="changeAdd()">Add pic</button>
  12.  
  13.     <script>
  14.         function changeAdd(){
  15.             let title = document.getElementById('title')
  16.             title.style.color = 'blue'
  17.  
  18.             let img = document.createElement('img')
  19.             img.src = 'basic/pics/img1.jpg'
  20.            
  21.             let divElement = document.getElementById('img-div')
  22.             divElement.appendChild(img)
  23.         }
  24.     </script>
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement