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