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