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