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