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