26 lines
798 B
XML
26 lines
798 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500" width="100%" height="100%">
|
|
<!-- Fond Noir -->
|
|
|
|
<!-- Style pour la police large et grasse -->
|
|
<style>
|
|
.logo-text {
|
|
font-family: 'Arial Black', 'Impact', sans-serif;
|
|
font-weight: 900;
|
|
letter-spacing: -2px;
|
|
}
|
|
.watch {
|
|
fill: #FFFFFF;
|
|
}
|
|
.gether {
|
|
fill: #60a5fa;
|
|
}
|
|
</style>
|
|
|
|
<!--
|
|
x="50" et textLength="400" force les deux mots à faire
|
|
exactement la même largeur (400px), alignés au millimètre.
|
|
-->
|
|
<text x="50" y="220" font-size="140" textLength="400" lengthAdjust="spacingAndGlyphs" class="logo-text watch">WATCH</text>
|
|
<text x="50" y="370" font-size="140" textLength="400" lengthAdjust="spacingAndGlyphs" class="logo-text gether">GETHER</text>
|
|
</svg>
|