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