Advertisement
vSparkzyy

Quick FAQ Page For GalaxySMM

Sep 16th, 2018
887
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 4.37 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="width=device-width, initial-scale=1">
  5. <style>
  6. .accordion {
  7.     background-color: BLUE;
  8.     color: white;
  9.     cursor: pointer;
  10.     padding: 18px;
  11.     width: 75%;
  12.     border: 15;
  13.     text-align: left;
  14.     outline: none;
  15.     font-size: 15px;
  16.     transition: 0.4s;
  17. }
  18.  
  19. .active, .accordion:hover {
  20.     background-color: BLUE;
  21. }
  22.  
  23. .panel {
  24.     padding: 0 18px;
  25.     width: 72%;
  26.     text-align: left;
  27.     background-color: #404040;
  28.     max-height: 0;
  29.     overflow: hidden;
  30.     transition: max-height 0.2s ease-out;
  31. }
  32.  
  33. </style>
  34. </head>
  35. <body>
  36. <center>
  37. <font color="white">
  38. <h2>FAQ  </h2>
  39. </font>
  40.  
  41. <button class="accordion">What is Partially Completed? </button>
  42. <div class="panel">
  43. <font color="white">
  44.   <p>Partial Status is when we partially refund the remains of an order. Sometimes for some reasons we are unable to deliver a full order, so we refund you the remaining undelivered amount. Example: You bought an order with quantity 10 000 and charges 10$, let's say we delivered 9 000 and the remaining 1 000 we couldn't deliver, then we will "Partial" the order and refund you the remaining 1 000 (1$ in this example). </p>
  45. </div>
  46. <br>
  47. <button class="accordion">How much time to complete the orders?</button>
  48. <div class="panel">
  49.   <p>All orders will start from 0-24 hours of the order. <br>Youtube orders will take time to complete,( 1-5 days)</p>
  50. </div>
  51. <br>
  52. <button class="accordion">Can I change the link after order ?</button>
  53. <div class="panel">
  54.   <p>No you cannot do that. If the link changed after the order place, the order automatically marked as completed.No refunds</p>
  55. </div>
  56. <br>
  57. <button class="accordion">What Is Drip Feed?</button>
  58. <div class="panel">
  59.   <p>Drip Feed is a service that we are offering so you would be able to put the same order multiple times automatically. Example: let's say you want to get 1000 likes on your Instagram Post but you want to get 100 likes each 30 minutes, you will put Link: Your Post Link Quantity: 100 Runs: 10 (as you want to run this order 10 times, if you want to get 2000 likes, you will run it 20 times, etc…) Interval: 30 (because you want to get 100 likes on your post each 30 minutes, if you want each hour, you will put 60 because the time is in minutes) P.S: Never order more quantity than the maximum which is written on the service name (Quantity x Runs), Example if the service's max is 4000, you don’t put Quantity: 500 and Run: 10, because total quantity will be 500x10 = 5000 which is bigger than the service max (4000). Also never put the Interval below the actual start time (some services need 60 minutes to start, don’t put Interval less than the service start time or it will cause a fail in your order).</p>
  60. </div>
  61. <br>
  62. <button class="accordion">What happen if the link is private?</button>
  63. <div class="panel">
  64.   <p>If the link is private before the order start, the order will be cancelled. <br>if it make private after the order is done, order will be complete..</p>
  65. </div>
  66. <br>
  67. <button class="accordion">Can i have refunds for drop followers or likes?</button>
  68. <div class="panel">
  69.   <p>No, Likes/followers will drop,Because of the updates in twitter/ instagram/ fb ./ youtube .
  70. Only refill will be available once the same service/ server available. Organic views, followers or likes will be neglected.
  71. No refunds for the payments.</p>
  72. </div>
  73. <br>
  74. <button class="accordion">Can i cancel a order that i gave?</button>
  75. <div class="panel">
  76.   <p>No, orders are permanent, cannot be cancelled by admin.</p>
  77. </div>
  78. <br>
  79. <button class="accordion">Is there any referral system?</button>
  80. <div class="panel">
  81.   <p>We offer the cheapest price in the world, so no referral systems</p>
  82. </div>
  83. <br>
  84. <button class="accordion">How we contact admin</button>
  85. <div class="panel">
  86.   <p>use "Ticket" section or Live Chat<br>
  87. Skype: live:deadpool.gta2016</p>
  88. </div>
  89. <br>
  90. <br>
  91. <br>
  92.  
  93. <script>
  94. var acc = document.getElementsByClassName("accordion");
  95. var i;
  96.  
  97. for (i = 0; i < acc.length; i++) {
  98.  acc[i].addEventListener("click", function() {
  99.    this.classList.toggle("active");
  100.    var panel = this.nextElementSibling;
  101.    if (panel.style.maxHeight){
  102.      panel.style.maxHeight = null;
  103.    } else {
  104.      panel.style.maxHeight = panel.scrollHeight + "px";
  105.    }
  106.  });
  107. }
  108. </script>
  109.  
  110. </body>
  111. <style>
  112. body {
  113.  
  114. background-color: #222222;
  115.  
  116. }
  117. </style>
  118. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement