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