Use on the webTotal Use [ 6080 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/b30d181ae33fabbc43e5e4582b489bef?family=URWCippusD" 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/b30d181ae33fabbc43e5e4582b489bef?family=URWCippusD);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "URWCippusD";
src: url("https://db.onlinewebfonts.com/t/b30d181ae33fabbc43e5e4582b489bef.eot");
src: url("https://db.onlinewebfonts.com/t/b30d181ae33fabbc43e5e4582b489bef.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/b30d181ae33fabbc43e5e4582b489bef.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/b30d181ae33fabbc43e5e4582b489bef.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/b30d181ae33fabbc43e5e4582b489bef.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/b30d181ae33fabbc43e5e4582b489bef.svg#URWCippusD")format("svg");
}
2CSS rules to specify fonts
font-family: "URWCippusD";