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