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