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