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