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