Copyleft symbol 만들기

Copyleft
Copyleft symbol

Copyright에 대항하는 Copyleft symbol을 만드는 방법입니다.1 이 블로그는 다음과 같이 만들었습니다.

CSS
.copyleft {
   position: relative;
   vertical-align: middle;
   display: inline-block;
   transform: rotate(180deg);
}

HTML
<span class="copyleft">©</span>

연도를 나타내는 자바스크립트는 다음과 같습니다.2
<script>document.write(new Date().getFullYear());</script>


  1. Copyleft symbol
  2. Shortest way to print current year in a website

Comments