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