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