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