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