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