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