Use on the webTotal Use [ 4768 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/dda675c1ecc94a819af09cd3e7166f6c?family=URWPrinzD" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/dda675c1ecc94a819af09cd3e7166f6c?family=URWPrinzD);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "URWPrinzD";
src: url("https://db.onlinewebfonts.com/t/dda675c1ecc94a819af09cd3e7166f6c.eot");
src: url("https://db.onlinewebfonts.com/t/dda675c1ecc94a819af09cd3e7166f6c.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/dda675c1ecc94a819af09cd3e7166f6c.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/dda675c1ecc94a819af09cd3e7166f6c.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/dda675c1ecc94a819af09cd3e7166f6c.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/dda675c1ecc94a819af09cd3e7166f6c.svg#URWPrinzD")format("svg");
}
2CSS rules to specify fonts
font-family: "URWPrinzD";