SVG Arrow
by valllabh
HTML
<svg width="100%" height="21px">
<defs>
<marker id="arrow" markerWidth="20" markerHeight="20" refX="10" refY="10" orient="auto" markerUnits="strokeWidth">
<path d="M0,5 L10,10 L-10,20" stroke-linecap="round" stroke="#BA9800" fill="transparent" />
</marker>
</defs>
<line x1="0" y1="50%" x2="100%" y2="50%" stroke-linecap="round" stroke="#BA9800" stroke-width="1.1" marker-end="url(#arrow)" />
</svg>