svg--图形

 <svg width="500" height="500" viewBox="0 0 500 500">
      <!-- 圆圈 -->
      <circle r="5" cx="10" cy="10" fill="currentColor" />
      <!-- 横线 -->
      <line x1="40" y1="25" x2="90" y2="25" stroke-width="8" stroke="currentColor" />
      <!-- 三角形 -->
      <polyline points="20 10, 80 50, 20 90" fill="currentColor"></polyline>
    </svg>

  

原文地址:https://www.cnblogs.com/fdxjava/p/15393801.html