Pravilo font-face
Pravilo @font-face omogoča določitev
uporabniške pisave, katere izvorna koda je
shranjena v datoteki. To pisavo lahko
nato priključite z lastnostjo font-family.
Sintaksa
@font-face {
ime pisave;
vir pisave;
}
Primer
Poiščimo pisavo na našem lokalnem računalniku:
<body>
This is Montserrat SemiBold.
</body>
@font-face {
font-family: "Montserrat SemiBold";
src: local("Montserrat SemiBold");
}
body {
font-family: "Montserrat SemiBold";
}
#elem {
animation: anim 3s infinite;
border: 1px solid black;
width: 50px;
height: 50px;
}
:
Primer
Zdaj pa določimo naslov oddaljenega strežnika za iskanje pisave:
<body>
This is Bitstream Vera Serif Bold.
</body>
@font-face {
font-family: "Bitstream Vera Serif Bold";
src: url("https://mdn.github.io/css-examples/web-fonts/VeraSeBd.ttf");
}
body {
font-family: "Bitstream Vera Serif Bold", serif;
}
#elem {
animation: anim 3s infinite;
border: 1px solid black;
width: 50px;
height: 50px;
}
: