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