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