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