Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
<!-- External: simple, cached, no CSS/JS inside --> <img src="logo.svg" width="120" alt="Logo"> <!-- Inline: CSS/JS control, slightly larger HTML --> <svg class="logo" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"> <path class="logo-shape" d="M50 10 L90 90 L10 90 Z"/> </svg> <!-- Object: external file but scriptable from within the SVG --> <object data="interactive.svg" type="image/svg+xml" width="200" height="200"></object>
Result
Open