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