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