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