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