Advertisement
Guest User

Untitled

a guest
Mar 6th, 2018
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
  2. <html>
  3. <head>
  4. <title>New Document</title>
  5. <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
  6. <style>
  7. button{
  8. background-image: linear-gradient(to bottom,#337ab7 0,#265a88 100%);
  9. color: white;
  10. padding: 10px 18px;
  11. border: none;
  12. cursor: pointer;
  13. width: auto;
  14. }
  15. #hidden input[type=text] {
  16. width: 200px;;
  17. padding: 12px 20px;
  18. margin: 8px 0;
  19. display: inline-block;
  20. border: 1px solid #ccc;
  21. box-sizing: border-box;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <button id="link">Gutschein anzeigen</button>
  27. <script type="text/javascript">
  28.  
  29. document.getElementById('link').onclick = function() {
  30. location = 'meineseite.de/?gutscheinr=1234';
  31. window.open('produktseite.de');
  32. return false;
  33. };
  34.  
  35. </script>
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement