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