html`
<svg width="500" height="300">
<defs>
<g id="triangulos">
<polygon points="12.5 3.25, 25 25, 0 25" style="fill:yellow; stroke:blue; stroke-width:2" />
<polygon points="37.5 25, 50 3.25, 25 3.25" style="fill:white; stroke:red; stroke-width:2" />
<polygon points="62.5 3.25, 75 25, 50 25" style="fill:yellow; stroke:blue; stroke-width:2" />
<polygon points="87.5 25, 100 3.25, 75 3.25" style="fill:white; stroke:red; stroke-width:2" />
<polygon points="112.5 3.25, 125 25, 100 25" style="fill:yellow; stroke:blue; stroke-width:2" />
<polygon points="137.5 25, 150 3.25, 125 3.25" style="fill:white; stroke:red; stroke-width:2" />
<polygon points="162.5 3.25, 175 25, 150 25" style="fill:yellow; stroke:blue; stroke-width:2" />
<polygon points="187.5 25, 200 3.25, 175 3.25" style="fill:white; stroke:red; stroke-width:2" />
<polygon points="212.5 3.25, 225 25, 200 25" style="fill:yellow; stroke:blue; stroke-width:2" />
<polygon points="237.5 25, 250 3.25, 225 3.25" style="fill:white; stroke:red; stroke-width:2" />
<polygon points="262.5 3.25, 275 25, 250 25" style="fill:yellow; stroke:blue; stroke-width:2" />
<polygon points="287.5 25, 300 3.25, 275 3.25" style="fill:white; stroke:red; stroke-width:2" />
<polygon points="312.5 3.25, 325 25, 300 25" style="fill:yellow; stroke:blue; stroke-width:2" />
<polygon points="337.5 25, 350 3.25, 325 3.25" style="fill:white; stroke:red; stroke-width:2" />
<polygon points="362.5 3.25, 375 25, 350 25" style="fill:yellow; stroke:blue; stroke-width:2" />
<polygon points="387.5 25, 400 3.25, 375 3.25" style="fill:white; stroke:red; stroke-width:2" />
<polygon points="412.5 3.25, 425 25, 400 25" style="fill:yellow; stroke:blue; stroke-width:2" />
<polygon points="437.5 25, 450 3.25, 425 3.25" style="fill:white; stroke:red; stroke-width:2" />
<polygon points="462.5 3.25, 475 25, 450 25" style="fill:yellow; stroke:blue; stroke-width:2" />
<polygon points="487.5 25, 500 3.25, 475 3.25" style="fill:white; stroke:red; stroke-width:2" />
<polygon points="512.5 3.25, 525 25, 500 25" style="fill:yellow; stroke:blue; stroke-width:2" />
<polygon points="537.5 25, 550 3.25, 525 3.25" style="fill:white; stroke:red; stroke-width:2" />
<polygon points="562.5 3.25, 575 25, 550 25" style="fill:yellow; stroke:blue; stroke-width:2" />
<polygon points="587.5 25, 600 3.25, 575 3.25" style="fill:white; stroke:red; stroke-width:2" />
<polygon points="612.5 3.25, 625 25, 600 25" style="fill:yellow; stroke:blue; stroke-width:2" />
<polygon points="637.5 25, 650 3.25, 625 3.25" style="fill:white; stroke:red; stroke-width:2" />
<polygon points="662.5 3.25, 675 25, 650 25" style="fill:yellow; stroke:blue; stroke-width:2" />
<polygon points="687.5 25, 700 3.25, 675 3.25" style="fill:white; stroke:red; stroke-width:2" />
<polygon points="712.5 3.25, 725 25, 700 25" style="fill:yellow; stroke:blue; stroke-width:2" />
<polygon points="737.5 25, 750 3.25, 725 3.25" style="fill:white; stroke:red; stroke-width:2" />
</g>
</defs>
<g transform="scale(0.5)">
//Fila 1
<use xlink:href="#triangulos" />
//Fila 2
<use xlink:href="#triangulos" transform="translate(0, 30)" />
//Fila 3
<use xlink:href="#triangulos" transform="translate(0, 60)" />
//Fila 4
<use xlink:href="#triangulos" transform="translate(0, 90)" />
//Fila 5
<use xlink:href="#triangulos" transform="translate(0, 120)" />
//Fila 6
<use xlink:href="#triangulos" transform="translate(0, 150)" />
//Fila 7
<use xlink:href="#triangulos" transform="translate(0, 180)" />
//Fila 8
<use xlink:href="#triangulos" transform="translate(0, 210)" />
//Fila 9
<use xlink:href="#triangulos" transform="translate(0, 240)" />
//Fila 10
<use xlink:href="#triangulos" transform="translate(0, 270)" />
//Fila 11
<use xlink:href="#triangulos" transform="translate(0, 300)" />
//Fila 12
<use xlink:href="#triangulos" transform="translate(0, 330)" />
//Fila 13
<use xlink:href="#triangulos" transform="translate(0, 360)" />
//Fila 14
<use xlink:href="#triangulos" transform="translate(0, 390)" />
//Fila 15
<use xlink:href="#triangulos" transform="translate(0, 420)" />
</g>
</svg>
</html>`