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