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