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