Created
March 15, 2016 11:51
-
-
Save ps-team/83c0c1f6b6ca8467b669 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> | |
<!-- svg file --> | |
<svg style="display: none;" aria-hidden="true"> | |
<symbol id="icon-twitter" ...><path ...></path></symbol> | |
<symbol id="icon-instagram" ...><path ...></path></symbol> | |
</svg> | |
<!-- svg use case, twitter icon --> | |
<svg xmlns="http://www.w3.org/2000/svg" class="icon-twitter"> | |
<use xlink:href="#icon-twitter"></use> | |
</svg> | |
<!-- svg use case, instagram icon --> | |
<svg xmlns="http://www.w3.org/2000/svg" class="icon-instagram"> | |
<use xlink:href="#icon-instagram"></use> | |
</svg> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment