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