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