Skip to content

Instantly share code, notes, and snippets.

@sandeepsuvit
Forked from clhenrick/cafe-18.svg
Created May 1, 2018 08:31
Show Gist options
  • Save sandeepsuvit/ee3cad6d51f36aa4f24b9737167b00f1 to your computer and use it in GitHub Desktop.
Save sandeepsuvit/ee3cad6d51f36aa4f24b9737167b00f1 to your computer and use it in GitHub Desktop.
Load an SVG from an external page
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!doctype HTML>
<hmtl>
<head>
<meta charset="utf8">
<style type="text/css">
* {
-webkit-transform-origin-x: 0px;
-webkit-transform-origin-y: 0px;
-webkit-transform-origin-z: initial;
}
.icon {
width: 180px;
height: 180px;
fill: hsl(0, 100%, 80%);
}
</style>
</head>
<body>
<p>Hello World!</p>
<br>
<!-- code from CSS Tricks: http://css-tricks.com/svg-use-external-source/ -->
<!-- `<use>` shape defined in an EXTERNAL RESOURCE -->
<svg viewBox="0 0 18 18" class="icon">
<use xlink:href="cafe-18.svg#svg4619"></use>
</svg>
</body>
</hmtl>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment