Julius: Zwei Grafiken klickbar machen

Beitrag lesen

Hallo Achot,

Aus dem Vektorgrafikprogramm deiner Wahl. Oder bei einfachen Grafiken wie hier aus dem Texteditor deiner Wahl.

mit einem Texteditor? Kannst du ein Bild auswendig auswendig in einem Texteditor schreiben? 😱

Du kannst das auch:

<svg viewbox="0 0 80 65">
 <rect x="5" y="5" width="20" height="25" fill="#323232"/>
 <rect x="30" y="5" width="20" height="25" fill="#323232"/>
 <rect x="55" y="5" width="20" height="25" fill="#323232"/>
 <rect x="5" y="35" width="20" height="25" fill="#323232"/>
 <rect x="30" y="35" width="20" height="25" fill="#323232"/>
 <rect x="55" y="35" width="20" height="25" fill="#323232"/>
</svg>

ergibt:
Test-SVG

Erfordert nur einen kurzen Blick ins Wiki.

Gruß
Julius