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