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