Last active
April 22, 2023 17:19
-
-
Save jormaturkenburg/42bf377e390839b6fd75745403fface7 to your computer and use it in GitHub Desktop.
Yellow circle
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
<svg id="yellowCircle" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" width="200" height="200"> | |
<script id="svgScript" type="text/javascript"> | |
console.log('Hello world!!'); | |
alert('Good to see ya'); | |
function test() { | |
console.log('test'); | |
} | |
</script> | |
<circle cx="100" cy="100" r="90" stroke="red" stroke-width="5" fill="yellow" /> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment