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