16 lines
550 B
HTML
16 lines
550 B
HTML
<!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>
|