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