Fashion Blog


SUBMITTED BY: Electricityplug22

DATE: Aug. 12, 2020, 4:18 a.m.

FORMAT: Text only

SIZE: 1.6 kB

HITS: 469

  1. <!-- Subscribe Modal -->
  2. <div id="subscribe" class="w3-modal w3-animate-opacity">
  3. <div class="w3-modal-content" style="padding:32px">
  4. <div class="w3-container w3-white">
  5. <i onclick="document.getElementById('subscribe').style.display='none'" class="fa fa-remove w3-transparent w3-button w3-xlarge w3-right"></i>
  6. <h2 class="w3-wide">SUBSCRIBE</h2>
  7. <p>Join my mailing list to receive updates on the latest blog posts and other things.</p>
  8. <p><input class="w3-input w3-border" type="text" placeholder="Enter e-mail"></p>
  9. <button type="button" class="w3-button w3-block w3-padding-large w3-red w3-margin-bottom" onclick="document.getElementById('subscribe').style.display='none'">Subscribe</button>
  10. </div>
  11. </div>
  12. </div>
  13. <!-- Footer -->
  14. <footer class="w3-container w3-dark-grey" style="padding:32px">
  15. <a href="#" class="w3-button w3-black w3-padding-large w3-margin-bottom"><i class="fa fa-arrow-up w3-margin-right"></i>To the top</a>
  16. <p>Powered by <a href="https://www.w3schools.com/w3css/default.asp" target="_blank">w3.css</a></p>
  17. </footer>
  18. <script>
  19. // Toggle between hiding and showing blog replies/comments
  20. document.getElementById("myBtn").click();
  21. function myFunction(id) {
  22. var x = document.getElementById(id);
  23. if (x.className.indexOf("w3-show") == -1) {
  24. x.className += " w3-show";
  25. } else {
  26. x.className = x.className.replace(" w3-show", "");
  27. }
  28. }
  29. function likeFunction(x) {
  30. x.style.fontWeight = "bold";
  31. x.innerHTML = "✓ Liked";
  32. }
  33. </script>
  34. </body>
  35. </html>

comments powered by Disqus