svg 태그에 대해 알아보면서 추가적으로 <linearGradient>, <stop>, <g> 태그에 대해 알아보았다.
<stop>
<stop>요소는 그라데이션에 사용할 색상과 위치를 정의할 수 있다.
<linearGradient>
<linearGradient> 태그를 사용하면 다른 SVG 요소에 선형 그라데이션을 적용할 수 있다.
<radialGradient>
<radialGradient>요소를 통해 작성자는 그래픽 요소의 채우기 또는 획에 적용할 수 있는 방사형 그라데이션을 정의할 수 있다.
<g>
다른 svg 요소를 그룹화 하는 데 사용되는 컨테이너이다.
<use> 요소와 함께 나중에 참조될 여러 요소들을 그룹화 할 수 있다.
참고
https://developer.mozilla.org/en-US/docs/Web/SVG/Element/linearGradient
https://developer.mozilla.org/en-US/docs/Web/SVG/Element/radialGradient
https://developer.mozilla.org/en-US/docs/Web/SVG/Element/stop