Initial Commit

This commit is contained in:
eneller
2026-07-12 11:18:39 +02:00
commit 16a0fc31c0
3 changed files with 31 additions and 0 deletions

BIN
EuroPlate.ttf Normal file

Binary file not shown.

4
README.md Normal file
View File

@@ -0,0 +1,4 @@
: maßstabsgetreuer Platzhalter für die Behördensiegel
? Ovales Kennzeichen „D“, offizielle Ausführung
+ Alternatives Nationalitätskennzeichen „D“ im Sternenkranz
! „Euro-Feld“ mit Sternenkranz und „D“ in DIN-Schrift

27
index.html Normal file
View File

@@ -0,0 +1,27 @@
<html>
<style>
@font-face {
font-family: 'feschrift';
src: url('./EuroPlate.ttf') format('truetype');
}
html, body{
font-family: feschrift;
font-size: 2em
}
.licenseplate{
display: inline-flex;
border: 1mm solid black;
border-radius: .1em;
padding-right: .05em;
}
.eublock{
color: #003399;
font-size: 1.05em;
}
</style>
<body>
<span class="licenseplate">
<div class="eublock">!</div>HU:ND 85
</span>
</body>
</html>