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