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