blob: c03789d547b19dd6888f7be2eaa7cda3761f469e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
<head>
<script>
window.addEventListener("load", () => {
const svg = document.createElementNS("http://www.w3.org/2000/svg", "svg")
const image = document.createElementNS("http://www.w3.org/2000/svg", "image")
image.setAttribute("height", "78.04250580135444ch")
image.setAttribute("width", "1024rem")
image.setAttribute("clip-path", "path( evenodd, '\\C' )")
svg.appendChild(image)
document.documentElement.appendChild(svg)
})
</script>
</head>
</html>
|