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