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