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