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