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