Advertisement
Guest User

Untitled

a guest
Jan 24th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.71 KB | None | 0 0
  1. <style>
  2. @media (min-width: 768px) {
  3.             #mobile_copyright {
  4.                 display: none;
  5.     }
  6. }
  7. @media (max-width: 767px) {
  8.     #desktop_copyright {
  9.         display: none;
  10.     }
  11. }
  12. </style>
  13. <div id="mobile_copyright" align="center">
  14. &copy; ExciteAll Marketing UG (haftungsbeschränkt)<br>All Rights Reserved 2018-<script>
  15. now = new Date
  16. theYear=now.getYear()
  17. if (theYear < 1900) theYear=theYear+1900
  18. document.write(theYear)
  19. </script>
  20. </div>
  21. <div id="desktop_copyright" align="center">
  22. &copy; ExciteAll Marketing UG (haftungsbeschränkt) - All Rights Reserved 2018-<script>
  23. now = new Date
  24. theYear=now.getYear()
  25. if (theYear < 1900) theYear=theYear+1900
  26. document.write(theYear)
  27. </script>
  28. </div>
  29. <div style="clear: both;"></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement