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