Advertisement
Guest User

Veemo! (by Zakured)

a guest
Feb 12th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.73 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.          Choose a Veemo
  5. <select>
  6.   <option value="Veemo">Veemo</option>
  7.   <option value="Veemo">Veemo?</option>
  8.   <option value="Woomy">Woomy</option>
  9. </select>
  10. </div>
  11.     <button onclick="myFunction()">Submit</button>
  12. <div id="myDIV" style="display: none;">
  13. <div id="myDIV">
  14. Octoling: Veemo!
  15. </div>
  16.  
  17.  
  18.  
  19. <script>
  20.  
  21. function myFunction() {
  22.   var x = document.getElementById("myDIV");
  23.   if (x.style.display === "none") {
  24.     x.style.display = "block";
  25.   } else {
  26.     x.style.display = "none";
  27.   }
  28. }
  29. </script>
  30.  
  31. </body>
  32. </html>
  33.  
  34. <!DOCTYPE html>
  35. <html>
  36. <body>
  37.  
  38. <img src="https://i.kym-cdn.com/photos/images/original/000/977/114/16d.jpg" width="500" height="600">
  39.  
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement