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