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