Currently, I am focusing on manipulating an svg image (as depicted in the screenshot with an arrow indicating four triangles) within the html code showcased below, pertaining to the webpage where I aim to increase its height.
https://i.sstatic.net/Ycgp0.png
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30">
<style>.path-one,.path-two{fill-rule:evenodd;clip-rule:evenodd;fill:#00afc9}.path-two{opacity:.4;fill:#93c83d}</style>
<path class="path-one" d="M30 30H0V0"></path>
<path class="path-two" d="M0 30V0h30"></path>
</svg>
My attempts at adding inline attributes like width="150px"
and height="150px"
directly into the svg tag have proven ineffective.
Issue:
I am contemplating what alterations should be made to the provided code above in order to modify the height of the svg image.