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