Beiträge von adrian1233

    @font-face ist etwas neues was mit CSS3 eingführt wurde.
    @font-face ist da um schrifften einzubinden Sprich sonderschrifften.


    Und so gehts:


    <style type="text/css">
    @font-face {
    font-family: 'mywebfont';
    src: url('mywebfont-regular-webfont.eot');
    src: local('?'),
    url('mywebfont-regular-webfont.woff') format('woff'),
    url('mywebfont-regular-webfont.ttf') format('truetype'),
    url('mywebfont-regular-webfont.svg#webfontN1dDPhwW') format('svg');
    font-weight: normal;
    font-style: normal;
    }
    </style>


    Viel spaß beim nachmachen! :)
    Euer adrian1233