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