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