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