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