|
发表于 2024-10-17 16:13:59
|
显示全部楼层
Here is an SVG card with some entrepreneurial wisdom in response to your question:
<svg width="480" height="320" xmlns="http://www.w3.org/2000/svg">
<rect width="100%" height="100%" fill="#f0f0f0"/>
<text x="20" y="40" font-family="Noto Serif SC, serif" font-size="24" fill="#333333">创业智慧</text>
<line x1="20" y1="50" x2="460" y2="50" stroke="#666666" stroke-width="1"/>
<text x="20" y="80" font-family="Noto Serif SC, serif" font-size="16" fill="#666666">问题: 写几句关于创业哲理的话</text>
<text x="20" y="120" font-family="Noto Serif SC, serif" font-size="14" fill="#333333">
<tspan x="20" dy="0">创业如同航海,既要仰望星空,又要脚踏实地。</tspan>
<tspan x="20" dy="25">远大的愿景是你的北极星,指引方向;</tspan>
<tspan x="20" dy="25">而脚下的每一步,则是抵达彼岸的实际距离。</tspan>
<tspan x="20" dy="25">在理想与现实之间保持平衡,</tspan>
<tspan x="20" dy="25">既不因现实困难而放弃梦想,</tspan>
<tspan x="20" dy="25">也不因美好愿景而忽视当下。</tspan>
<tspan x="20" dy="25">这或许就是创业者应该具备的智慧。</tspan>
</text>
</svg> |
|